Chat API
List Models
List models available to the current API key, compatible with the OpenAI Models API
GET
Documentation Index
Fetch the complete documentation index at: https://docs.toapis.com/llms.txt
Use this file to discover all available pages before exploring further.
- Compatible with the OpenAI Models API format
- Returns models available to the current API key and user group
- Returns text models by default; use
type=allto include all model types - Supports filtering by text, image, video, or audio models
Authorizations
All API requests require Bearer Token authentication.Get your API key from the API Key management page.Add it to the request header:
Query Parameters
Filters models by type.Supported values:
textorchat: return text/chat models onlyimage: return image models onlyvideo: return video models onlyaudio: return audio models onlyall: return all available models
Response
Whether the request succeeded.
List object type. Always
list.The list of models.
Notes
- If the API key has model restrictions, only allowed models are returned.
- If
typeis omitted, async task models such as video and audio models are excluded from the default result. - To retrieve image, video, audio, and text models together, call
GET /v1/models?type=all.