Anthropic Models API
Query available models on the OfoxAI platform through the Anthropic native protocol. The response format follows the Anthropic API specification (type, display_name, created_at, etc.).
The Models API is a public endpoint that does not require an API Key. This endpoint returns all models accessible via the Anthropic protocol, not limited to the Claude series.
List All Models
GET https://api.ofox.ai/anthropic/v1/modelsRequest Example
Terminal
curl https://api.ofox.ai/anthropic/v1/modelsResponse Format
{
"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
}
]
}Field Differences from OpenAI Protocol
| Field | OpenAI Protocol | Anthropic Protocol |
|---|---|---|
| Type identifier | "object": "model" | "type": "model" |
| Name | name | display_name |
| Creation time | created (Unix timestamp) | created_at (ISO 8601) |
Filter Models by Provider
GET https://api.ofox.ai/anthropic/v1/models/{provider}Path Parameters
| Parameter | Type | Description |
|---|---|---|
provider | string | Provider identifier, e.g. anthropic, openai, google |
Request Example
Terminal
# List only Claude series models
curl https://api.ofox.ai/anthropic/v1/models/anthropicResponse Format
The response format is the same as listing all models, with the data array containing only models from the specified provider.
Get Model Details
GET https://api.ofox.ai/anthropic/v1/models/{provider}/{model_id}Path Parameters
| Parameter | Type | Description |
|---|---|---|
provider | string | Provider identifier, e.g. anthropic |
model_id | string | Model name, e.g. claude-sonnet-4.6 |
Request Example
Terminal
curl https://api.ofox.ai/anthropic/v1/models/anthropic/claude-sonnet-4.6Response Format
Returns a single Model object with the same structure as objects in the list endpoint.
Last updated on