공급자
프로바이더 목록
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 지원 여부 |