List Models

GET /v1/models

Returns models callable by the current API key. The result is affected by admin enablement, provider health, and the key's allowed_models policy.

This endpoint currently does not support provider or capability query filters. Use the model catalog page for capability filtering.

Request

terminal
bash
curl https://api.chuizi.ai/v1/models \
  -H "Authorization: Bearer ck-your-key"

Response

config.json
json
{
  "object": "list",
  "data": [
    {
      "id": "anthropic/claude-sonnet-4-6",
      "object": "model",
      "created": 1778544000,
      "owned_by": "anthropic",
      "aliases": ["claude-sonnet-4-6"],
      "pricing": {
        "input": "3.15",
        "output": "15.75",
        "unit": "token"
      }
    }
  ]
}

Price fields are shown per 1M tokens and include the public model markup. Final billing still depends on the actual request, usage, cache behavior, and key-level policy.

FieldDescription
idRecommended public model ID to call
owned_byPublic model brand or provider label
aliasesPublic compatibility aliases; prefer id for new integrations
pricing.input/outputUser-facing price per 1M tokens
pricing.unitBilling unit such as token, request, or second
List Models — Chuizi AI Docs | Chuizi AI