Skip to main content

List Models

Retrieve a list of available models from the Unbound gateway.

Endpoint

Request Headers

HeaderTypeRequiredDescription
AuthorizationstringNoBearer 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

FieldTypeDescription
objectstringAlways "list"
dataarrayArray of model objects
data[].idstringModel identifier in provider/model-name format
data[].createdintegerUnix timestamp
data[].pricing.input_token_pricestringPrice per million input tokens (USD)
data[].pricing.output_token_pricestringPrice per million output tokens (USD)
data[].pricing.cache_read_pricestringPrice per million cache-read tokens (USD). Optional — present only for models that support prompt caching.
data[].pricing.cache_write_pricestringPrice per million cache-write tokens (USD). Optional — present only for models that support prompt caching.
data[].parameters.context_windowintegerMaximum context window in tokens. 0 when the value is unknown for the model.
data[].parameters.max_tokensintegerMaximum output tokens. 0 when the value is unknown for the model.
data[].parameters.supports_imagesbooleanWhether the model accepts image inputs
data[].parameters.supports_prompt_cachingbooleanWhether the model supports prompt caching
data[].parameters.supports_computer_usebooleanWhether 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.
You can also browse available models in the Unbound dashboard.