Base URL: https://api.orbitrage.ai/v1 · Auth: Authorization: Bearer orb_…
Returns the models currently routable on your account, in OpenAI list format
with extra fields for tier, vision support, and routing bias. This is the
authoritative catalog — it reflects which providers are configured and any
BYOK keys you’ve saved.
Example
curl https://api.orbitrage.ai/v1/models \
-H "Authorization: Bearer $ORBITRAGE_API_KEY"
Response
{
"object": "list",
"data": [
{
"id": "DeepSeek-V4-Flash",
"object": "model",
"tier": "mid",
"vision": false,
"bias": "mixed"
},
{
"id": "claude-sonnet-4-6",
"object": "model",
"tier": "frontier",
"vision": true,
"bias": "mixed"
}
]
}
| Field | Meaning |
|---|
id | The model id you pass in model to pin it. |
tier | basic, mid, high, frontier, or image. See Routing. |
vision | Whether the model accepts image content. |
bias | Routing hint: chat, code, mixed, or reasoning. |
Use this endpoint to populate a model picker, or to discover the exact ids to
pin. For pricing per model, see Models.