> ## 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.

# 列出模型

> 列出当前 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>
