Skip to main content
GET /v1/models Returns the list of models currently available through Consus Gateway.

Request

Headers

HeaderRequiredDescription
x-api-keyYesYour API key

Response

{
  "object": "list",
  "data": [
    {
      "id": "claude-3-7-sonnet:il5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-sonnet-4-5:il5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "gemini-2-5-flash:il5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "google"
    },
    {
      "id": "gemini-2-5-pro:il5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "google"
    }
  ]
}

Model Object

FieldTypeDescription
idstringThe model identifier to use in API requests
objectstringAlways "model"
createdintegerUnix timestamp
owned_bystringThe organization that created the model (e.g., anthropic, 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 are integrated, their models will appear automatically.