Documentation Index
Fetch the complete documentation index at: https://aimp.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
REST API
Use the REST API when your own backend, worker, or script needs to execute a published model. Public consumers should call the Gateway. Do not call internal services directly.Base URL
Use the Gateway URL for your environment:Authentication
Server-to-server requests use an API key:Execute a model
Request fields
| Field | Required | Meaning |
|---|---|---|
model | Yes | The published model slug or identifier. |
mode | No | The operation to run. Defaults to execute. |
scope | Sometimes | Required for vector-enabled modes; commonly playground for interactive tests. |
input | Yes | Model input. Shape depends on the model contract. |
params | No | Model parameters. Must be a JSON object. |
options | No | Allowed execution options. Do not send hardware_tier; hardware is resolved from the published model release. |
params, not parameters. Vector routing fields such as resources,
alias, collection, and namespace are managed by the platform and must not
be supplied by clients.
Related APIs
GET /api/marketplace/modelslists published Marketplace models.GET /api/marketplace/models/{slug}loads one Marketplace model detail page.GET /api/billing/walletloads the current workspace wallet.GET /api/billing/usage/summaryloads usage summary for the current workspace.