Endpoints/Models
List models
Retrieve a list of all currently active and available models in the system. The response format is fully OpenAI-compatible.
GET
https://api.sozdai.ai/v1/models#Authentication
All requests carry your API key in the Authorization header.
http
Authorization: Bearer sk-corr-...#Request Example
bash
curl https://api.sozdai.ai/v1/models \
-H "Authorization: Bearer $CORRY_KEY"#Response Example
Returns a JSON object containing the list of available models.
| Field | Type | Description |
|---|---|---|
| object | string | Object type, always 'list' |
| data | array | Array of model objects |
| data[].id | string | Unique model identifier used in chat completions |
| data[].object | string | Always 'model' |
| data[].owned_by | string | Model owner, always 'corry' |
json
{
"object": "list",
"data": [
{
"id": "gpt-4o",
"object": "model",
"owned_by": "corry"
},
{
"id": "claude-3-5-sonnet",
"object": "model",
"owned_by": "corry"
},
{
"id": "deepseek-reasoner",
"object": "model",
"owned_by": "corry"
}
]
}