List Models
Retrieve a list of available models from the Unbound gateway.Endpoint
Request Headers
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | string | No | Bearer token with your API key. Optional — the endpoint returns the public model catalog without authentication. Pass your key to receive your organization’s filtered model list. |
Example Request
Example Response
The catalog updates frequently — the numbers below are illustrative. Always read the live endpoint for canonical pricing,max_tokens, and capability flags.
Don’t hardcode
max_tokens, pricing, or the model set from this page. Call GET /v1/models at request time — the gateway exposes ~60 models today and the catalog grows as new providers and model versions ship.Response Fields
| Field | Type | Description |
|---|---|---|
object | string | Always "list" |
data | array | Array of model objects |
data[].id | string | Model identifier in provider/model-name format |
data[].created | integer | Unix timestamp |
data[].pricing.input_token_price | string | Price per million input tokens (USD) |
data[].pricing.output_token_price | string | Price per million output tokens (USD) |
data[].pricing.cache_read_price | string | Price per million cache-read tokens (USD). Optional — present only for models that support prompt caching. |
data[].pricing.cache_write_price | string | Price per million cache-write tokens (USD). Optional — present only for models that support prompt caching. |
data[].parameters.context_window | integer | Maximum context window in tokens. 0 when the value is unknown for the model. |
data[].parameters.max_tokens | integer | Maximum output tokens. 0 when the value is unknown for the model. |
data[].parameters.supports_images | boolean | Whether the model accepts image inputs |
data[].parameters.supports_prompt_caching | boolean | Whether the model supports prompt caching |
data[].parameters.supports_computer_use | boolean | Whether the model supports computer use tools |
Model availability depends on your organization’s configuration and routing rules. Use the
/v1/models endpoint to get the current list of available models.
