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

# List Models

> Show the model that your Enterprise LLM Endpoint uses.

## Request

Send a `GET` request with your enterprise API key as a Bearer token. The list always holds one model: the model that your plan uses.

```curl curl theme={"theme":{"light":"github-light","dark":"github-dark"}}
--request GET 'https://modelslab.com/api/v1/enterprise/proxy/v1/models' \
--header 'Authorization: Bearer ENTERPRISE_API_KEY'
```

## Response

```json json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{
  "object": "list",
  "data": [
    {
      "id": "xiaomi/mimo-v2.6-pro",
      "object": "model",
      "owned_by": "modelslab"
    }
  ]
}
```
