Skip to main content

Endpoints

MethodPathDescription
POST/v1/run/{model_slug}Submit a run
GET/v1/runs/{run_id}Get run status
POST/v1/runs/searchSearch runs
DELETE/v1/runs/{run_id}Cancel a run
POST/v1/pricing/previewEstimate cost
Model slugs match the Explore catalog and model detail pages.

Request shape

The input object must match the model’s JSON schema (shown in each model’s Playground tab).

Async vs sync

  • Async (default): returns immediately with run_id; poll or use webhooks
  • Sync: set "sync": true or use models with sync execution mode — blocks until complete
See Submit a run and Poll runs.