Skip to main content
GET
/
v1
/
model-router
/
catalog
List selectable models plus per-role runtime model defaults
curl --request GET \
  --url https://api-sandbox.featherhq.com/v1/model-router/catalog \
  --header 'x-api-key: <api-key>'
{
  "models": [
    {
      "model_identifier": "<string>",
      "provider": "<string>",
      "supports_streaming": true,
      "max_context_window": 123,
      "input_price_per_1m": 123,
      "output_price_per_1m": 123,
      "supports_tools": true,
      "supports_vision": false,
      "regions": [
        "<string>"
      ],
      "family": "default",
      "supports_json_schema": true,
      "supports_reasoning_effort": false,
      "supports_temperature": true,
      "supports_thinking": false,
      "supports_audio": false,
      "compliance_tags": [
        "<string>"
      ]
    }
  ],
  "role_defaults": [
    {
      "role": "<string>",
      "model": "<string>",
      "reasoning_effort": "<string>",
      "max_tokens": 123,
      "temperature": 123,
      "thinking_budget": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

Response

Successful Response

Selectable models plus the per-role code defaults the runtime falls back to.

models
AvailableModel · object[]
required
role_defaults
RoleModelDefault · object[]
required