packages/cloud-frontend/content/api/models.mdx
import { Callout, Tabs } from "@/docs/components";
Discover and list available AI models.
Returns a list of available models for the current deployment.
curl -X GET "https://elizacloud.ai/api/v1/models" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"object": "list",
"data": [
{
"id": "provider/model-id",
"object": "model",
"created": 1705312800,
"owned_by": "provider",
"capabilities": ["chat"]
}
]
}
The /api/v1/models response is the source of truth for the full live catalog.
Provider availability, context windows, and capabilities can change with
provider catalogs and deployment configuration.
Embedding model availability and dimensions are returned by the model catalog or the embeddings API response for the current deployment.
Image model availability is also catalog-driven. Use /api/v1/models and the
Image Generation API reference for current defaults.