Sozdai LogoDocs
Эндпоинты/Models

List models

Retrieve a list of all currently active and available models in the system. The response format is fully OpenAI-compatible.

GEThttps://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.

FieldTypeDescription
objectstringObject type, always 'list'
dataarrayArray of model objects
data[].idstringUnique model identifier used in chat completions
data[].objectstringAlways 'model'
data[].owned_bystringModel 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"
    }
  ]
}