Lists Models
GET/models
Lists the currently available models, and provides basic information about each one such as the owner and availability. Check Models & Pricing for our currently supported models.
Responses
- 200
OK, returns A list of models
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
object stringrequired
Possible values: [list
]
data
Model[]
required
id stringrequired
The model identifier, which can be referenced in the API endpoints.
object stringrequired
Possible values: [model
]
The object type, which is always "model".
owned_by stringrequired
The organization that owns the model.
{
"object": "list",
"data": [
{
"id": "string",
"object": "model",
"owned_by": "string"
}
]
}
{
"object": "list",
"data": [
{
"id": "deepseek-chat",
"object": "model",
"owned_by": "deepseek"
},
{
"id": "deepseek-reasoner",
"object": "model",
"owned_by": "deepseek"
}
]
}
Loading...