Models List
GET /v1/models
Returns the list of models available to the current token. Clients typically use it to populate a model picker.
Request example
bash
curl https://api.idreame.ai/v1/models \
-H "Authorization: Bearer sk-xxxxxxxx"Response example
json
{
"object": "list",
"data": [
{ "id": "gpt-4o", "object": "model", "owned_by": "openai" },
{ "id": "claude-sonnet-5", "object": "model", "owned_by": "anthropic" },
{ "id": "gemini-2.5-pro", "object": "model", "owned_by": "google" },
{ "id": "deepseek-v3", "object": "model", "owned_by": "deepseek" },
{ "id": "qwen-max", "object": "model", "owned_by": "alibaba" }
]
}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Model ID; use this value when calling other endpoints |
object | string | Always "model" |
owned_by | string | Model provider identifier |
TIP
The returned list depends on the model group permissions of the current token. If a model is missing from the list, check the token's group configuration.
See all available models
For more detailed model categories, parameter limits, and pricing, see the Available Models overview.