Skip to content

Models

This page is the API documentation entry point. It shows how to list models and the most common call paths.

List available models

GET /v1/models

bash
curl https://api.example.com/v1/models \
  -H "Authorization: Bearer $API_KEY"

Response example

json
{
  "object": "list",
  "data": [
    {
      "id": "gpt-4.1-mini",
      "object": "model",
      "owned_by": "openai"
    },
    {
      "id": "claude-3.5-sonnet",
      "object": "model",
      "owned_by": "anthropic"
    }
  ]
}

Field reference

FieldTypeDescription
idstringUnique model identifier
owned_bystringProvider or vendor
objectstringResource type (usually model)

Selection tips

  • Low cost / high concurrency: prefer lightweight models
  • High-quality reasoning: choose stronger flagship models
  • Stability: prefer stable releases over experimental versions