Skip to main content
Base URL: https://api.orbitrage.ai/v1 · Auth: Authorization: Bearer orb_…
GET /v1/models
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"
    }
  ]
}
FieldMeaning
idThe model id you pass in model to pin it.
tierbasic, mid, high, frontier, or image. See Routing.
visionWhether the model accepts image content.
biasRouting 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.