Codzen

Get model list

Lists the currently available models, and provides basic information about each one such as the owner and availability.

Lists the currently available models, and provides basic information about each one such as the owner and availability.

GET
/v1/models

Authorization

BearerAuth
AuthorizationBearer <token>

API key as bearer token in Authorization header

In: header

Query Parameters

key?string

Header Parameters

x-api-key?string
anthropic-version?string
x-goog-api-key?string

Response Body

application/json

curl -X GET "https://llm-gateway.codzen.ai/v1/models"
{
  "object": "list",
  "data": [
    {
      "id": "gpt-4",
      "object": "model",
      "created": 0,
      "owned_by": "openai"
    }
  ]
}