API reference
Models
List available models and the full model catalog.
GET /models/available#
List the models you can use with POST /zo/ask. When authenticated with an API key, the list includes your BYOK (Bring Your Own Key) configurations.
Response#
modelsarrayList of available models.
models[].model_namestringThe value to pass to model_name in /zo/ask.
models[].labelstringHuman-readable model name.
models[].vendorstringModel provider (e.g. "Anthropic", "OpenAI", "Custom").
models[].descriptionstring | nullShort description of the model's capabilities.
models[].typestring | nullEither "fast" or "capable", indicating the model's speed/capability tradeoff.
models[].context_windownumber | nullMaximum context window size in tokens.
models[].is_byokbooleanWhether this is a BYOK (Bring Your Own Key) model.
GET /models/catalog#
The full public model catalog: the picker model list plus catalog-level metadata (default chat model, featured models, deprecation map). No authentication required. Cached for 5 minutes.
Response#
modelsarrayThe picker model list, sorted by priority.
default_chat_model_idstringPublic id of the default chat model.
featured_model_idsarrayPublic ids of featured models.
featured_models_are_freebooleanWhen true, featured models are free to use.
featured_model_labelsarrayLabels for featured_model_ids, in order.
promo_end_datestring | nullPromo end date (YYYY-MM-DD) or null.
deprecation_mapobjectMap of deprecated public model id → active successor public id.