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

Example

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

Response

The response lists every requestable composite ID across all active models. Each base model expands into its full ladder of authorized levels (FedRAMP Low/Moderate/High plus DoD IL2/IL4/IL5 where applicable, with +itar variants when the underlying provider is ITAR authorized). ITAR-authorized models additionally list a standalone :itar ID (ITAR with no compliance level). The example below is truncated for readability.
{
  "object": "list",
  "data": [
    {
      "id": "claude-3-7-sonnet:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-3-7-sonnet:itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-sonnet-4-5:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-sonnet-4-6:il2",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "gemini-2-5-pro:il5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "google"
    },
    {
      "id": "gpt-5.1:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "openai"
    },
    {
      "id": "gpt-oss-120b:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "openai"
    },
    {
      "id": "gpt-5.4:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "openai"
    }
  ]
}

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)
Only models with active provider integrations are returned. As new providers are integrated, their models will appear automatically.