Models¶
List and inspect the AI models available on the platform.
List Models¶
Returns all models your API key has access to.
Example¶
Response¶
{
"object": "list",
"data": [
{
"id": "gpt-4o",
"object": "model",
"created": 1715367049,
"owned_by": "openai"
},
{
"id": "claude-sonnet-4-20250514",
"object": "model",
"created": 1715367049,
"owned_by": "anthropic"
},
{
"id": "gemini-2.5-pro",
"object": "model",
"created": 1715367049,
"owned_by": "google"
}
]
}
Retrieve a Model¶
Example¶
Model Categories¶
| Category | Examples | Use Case |
|---|---|---|
| Chat | gpt-4o, claude-sonnet-4-20250514, gemini-2.5-pro | Conversational AI, reasoning, coding |
| Embedding | text-embedding-3-small, text-embedding-3-large | Semantic search, RAG |
| Image | dall-e-3 | Image generation |
| Audio | tts-1, whisper-1 | Speech synthesis & recognition |
| Rerank | rerank-v3 | Search result ranking |
Model availability
The list of available models may change as new models are added or retired. Always check /v1/models for the current list. If your token has model restrictions, only permitted models will appear.