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

# List Models

> List all models available to the current API key.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.arouter.ai/v1/models \
    -H "Authorization: Bearer lr_live_xxxx"
  ```

  ```python Python theme={null}
  models = client.models.list()
  for model in models.data:
      print(model.id)
  ```
</RequestExample>
