Appearance
Anthropic Models
获取当前可用的 Anthropic 模型列表。
请求
GET https://api.mirrorstages.com/anthropic/v1/models请求头
| 名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
x-api-key | string | 是 | 你的 API Key |
请求示例
bash
curl https://api.mirrorstages.com/anthropic/v1/models \
-H "x-api-key: your-api-key"响应
json
{
"object": "list",
"data": [
{
"id": "claude-sonnet-4-6-20250514",
"type": "model",
"display_name": "claude-sonnet-4-6-20250514",
"created_at": "2024-01-01T00:00:00Z"
},
{
"id": "claude-opus-4-20250514",
"type": "model",
"display_name": "claude-opus-4-20250514",
"created_at": "2024-01-01T00:00:00Z"
}
]
}