Skip to content

List Models

GET /v1/models

Returns the list of models currently available through Consus Gateway.

Request

Headers

Header Required Description
x-api-key Yes Your API key

Response

{
  "object": "list",
  "data": [
    {
      "id": "claude-3-7-sonnet",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-4-5-sonnet",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    }
  ]
}

Model Object

Field Type Description
id string The model identifier to use in API requests
object string Always "model"
created integer Unix timestamp
owned_by string The organization that created the model (anthropic, openai, google)

Example

curl https://api.consus.io/v1/models \
  -H "x-api-key: YOUR_API_KEY"

Only models with active provider integrations are returned. As new providers (Azure Government, GCP Vertex AI) are integrated, their models will appear automatically.