GET https://51kik.com/anthropic/v1/models

Anthropic-shaped model list. Filters and pagination match OpenAI-compatible list models.

Authentication

x-api-key: YOUR_API_KEY

or Bearer. 401 without a key.

Query parameters

Same as GET /v1/models: q, limit, offset, page, sort, modality filters, api_protocol, etc.

Example

curl -sS "https://51kik.com/anthropic/v1/models" \
  -H "x-api-key: $API_KEY" \
  -H "anthropic-version: 2023-06-01"

Response

{
  "data": [
    {
      "type": "model",
      "id": "vendor/model-name",
      "display_name": "...",
      "created_at": "2024-01-01T00:00:00.000Z"
    }
  ],
  "has_more": false
}

Use id as model on POST /messages.

Related