Documentation Index
Fetch the complete documentation index at: https://docs.getunbound.ai/llms.txt
Use this file to discover all available pages before exploring further.
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
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) |
data[].pricing.cache_write_price | string | Price per million cache-write tokens (USD) |
data[].parameters.context_window | integer | Maximum context window in tokens |
data[].parameters.max_tokens | integer | Maximum output tokens |
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.
