> ## Documentation Index
> Fetch the complete documentation index at: https://gateway.consus.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Models

> GET /v1/models. Returns the list of available 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 |

### Example

```bash theme={null}
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.

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "claude-sonnet-4-5:il5+itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-sonnet-4-5:itar",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "claude-sonnet-4-6:il2",
      "object": "model",
      "created": 1700000000,
      "owned_by": "anthropic"
    },
    {
      "id": "gemini-3-1-pro:il4",
      "object": "model",
      "created": 1700000000,
      "owned_by": "google"
    },
    {
      "id": "gemini-3-5-flash:il4",
      "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

| 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 (e.g., `anthropic`, `google`) |

Only models with active provider integrations are returned. As new providers are integrated, their models will appear automatically.
