供應商
列出提供商
取得透過 ARouter 可用的所有 AI 提供商列表。
取得當前透過 ARouter 可用的所有提供商,包括其名稱和支援的模型數量。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
取得透過 ARouter 可用的所有 AI 提供商列表。
GET /api/v1/providers
curl https://api.arouter.ai/api/v1/providers \
-H "Authorization: Bearer lr_live_xxxx"
{
"data": [
{
"id": "OpenAI",
"name": "OpenAI",
"model_count": 24,
"is_byok_supported": true
},
{
"id": "Anthropic",
"name": "Anthropic",
"model_count": 12,
"is_byok_supported": true
},
{
"id": "Google",
"name": "Google",
"model_count": 16,
"is_byok_supported": true
},
{
"id": "Meta",
"name": "Meta",
"model_count": 18,
"is_byok_supported": false
}
]
}
| 欄位 | 類型 | 描述 |
|---|---|---|
data | array | 提供商物件列表 |
data[].id | string | 用於路由的提供商識別碼(例如在 provider.order 中使用) |
data[].name | string | 人類可讀的提供商名稱 |
data[].model_count | integer | 該提供商可用的模型數量 |
data[].is_byok_supported | boolean | 該提供商是否支援 BYOK |