Anthropic Models API
Anthropic 네이티브 프로토콜을 통해 OfoxAI 플랫폼에서 사용 가능한 모델을 조회합니다. 응답 형식은 Anthropic API 규격(type, display_name, created_at 등 필드)을 따릅니다.
Models API는 공개 인터페이스이며, API Key 없이 호출할 수 있습니다. 이 엔드포인트는 Claude 시리즈뿐만 아니라 Anthropic 프로토콜을 통해 호출 가능한 모든 모델을 반환합니다.
모든 모델 목록
GET https://api.ofox.ai/anthropic/v1/models요청 예시
Terminal
curl https://api.ofox.ai/anthropic/v1/models응답 형식
{
"data": [
{
"type": "model",
"id": "anthropic/claude-haiku-4.5",
"display_name": "Anthropic: Claude Haiku 4.5",
"created_at": "2026-01-21T16:09:13Z",
"owned_by": "bedrock",
"canonical_slug": "claude-haiku-4-5-20251001",
"description": "Anthropic's fastest and most cost-effective model...",
"context_length": 200000,
"architecture": {
"modality": "text+image+file->text",
"input_modalities": ["text", "image", "file"],
"output_modalities": ["text"],
"tokenizer": "claude",
"instruct_type": null
},
"pricing": {
"prompt": "0.000001",
"completion": "0.000005",
"input_cache_read": "0.0000001",
"input_cache_write_5m": "0.00000125",
"input_cache_write_1h": "0.000002"
},
"top_provider": {
"context_length": 200000,
"max_completion_tokens": 64000,
"is_moderated": false
},
"supported_parameters": [
"temperature",
"top_p",
"max_tokens",
"stop",
"tools",
"tool_choice",
"response_format"
],
"expiration_date": null
}
]
}OpenAI 프로토콜과의 필드 차이
| 필드 | OpenAI 프로토콜 | Anthropic 프로토콜 |
|---|---|---|
| 타입 식별자 | "object": "model" | "type": "model" |
| 이름 | name | display_name |
| 생성 시간 | created (Unix 타임스탬프) | created_at (ISO 8601) |
공급자별 모델 필터링
GET https://api.ofox.ai/anthropic/v1/models/{provider}경로 파라미터
| 파라미터 | 타입 | 설명 |
|---|---|---|
provider | string | 공급자 식별자, 예: anthropic, openai, google |
요청 예시
Terminal
# Claude 시리즈 모델만 조회
curl https://api.ofox.ai/anthropic/v1/models/anthropic응답 형식
전체 모델 목록과 동일한 형식으로 반환되며, data 배열에는 지정된 공급자의 모델만 포함됩니다.
모델 상세 정보
GET https://api.ofox.ai/anthropic/v1/models/{provider}/{model_id}경로 파라미터
| 파라미터 | 타입 | 설명 |
|---|---|---|
provider | string | 공급자 식별자, 예: anthropic |
model_id | string | 모델 이름, 예: claude-sonnet-4.5 |
요청 예시
Terminal
curl https://api.ofox.ai/anthropic/v1/models/anthropic/claude-sonnet-4.5응답 형식
단일 Model 객체를 반환하며, 구조는 목록 인터페이스의 객체와 동일합니다.
Last updated on