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

# GET /v1/models: List router entrypoints and provider models

> Returns available models in OpenAI-compatible format. Lists configured entrypoints and shared provider models from the Aria Compute ROUTER.

Retrieve the list of available models from the Aria Compute ROUTER. This endpoint returns both configured entrypoints (virtual model names used for routing) and underlying provider models in a standard OpenAI `{object: 'list', data: [...]}` envelope.

## Endpoint

**GET** `/v1/models`

Data plane endpoint. Authenticate with `Authorization: Bearer <router-key>`.

## Response

<ResponseField name="object" type="string">
  Always `"list"`.
</ResponseField>

<ResponseField name="data" type="array">
  Array of model objects.

  <Expandable title="Model object fields">
    <ResponseField name="id" type="string">
      The model or entrypoint name.
    </ResponseField>

    <ResponseField name="object" type="string">
      Always `"model"`.
    </ResponseField>

    <ResponseField name="owned_by" type="string">
      `"aria-router"` for entrypoints, `"provider"` for provider models.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```bash theme={null}
curl -H 'Authorization: Bearer $ARIA_ROUTER_KEY' \
  http://<router-host>:8080/v1/models
```

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "ariacompute/semantic-auto",
      "object": "model",
      "owned_by": "aria-router"
    },
    {
      "id": "gpt-4o",
      "object": "model",
      "owned_by": "provider"
    }
  ]
}
```


## Related topics

- [Aria Compute ROUTER: OpenAI-compatible inference gateway](/api-reference/router/introduction.md)
- [Router Management Plane Models List API](/api-reference/router/management/models.md)
- [Router Providers List and Upsert API](/api-reference/router/management/providers.md)
- [List Evaluations](/api-reference/pin/evaluations/list.md)
- [Authenticate with Aria Compute ROUTER](/api-reference/router/authentication.md)
