Skip to Content

Anthropic Models API

Fragen Sie über das native Anthropic-Protokoll die auf der OfoxAI-Plattform verfügbaren Modelle ab. Das Antwortformat folgt der Anthropic-API-Spezifikation (Felder wie type, display_name, created_at).

Die Models API ist eine öffentliche Schnittstelle — kein API Key erforderlich. Dieser Endpunkt liefert alle über das Anthropic-Protokoll aufrufbaren Modelle, nicht nur die Claude-Reihe.

Alle Modelle auflisten

GET https://api.ofox.ai/anthropic/v1/models

Anfragebeispiel

Terminal
curl https://api.ofox.ai/anthropic/v1/models

Antwortformat

{ "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 } ] }

Feldunterschiede zum OpenAI-Protokoll

FeldOpenAI-ProtokollAnthropic-Protokoll
Typkennung"object": "model""type": "model"
Namenamedisplay_name
Erstellungszeitcreated (Unix-Zeitstempel)created_at (ISO 8601)

Modelle nach Anbieter filtern

GET https://api.ofox.ai/anthropic/v1/models/{provider}

Pfadparameter

ParameterTypBeschreibung
providerstringAnbieterkennung, z.B. anthropic, openai, google

Anfragebeispiel

Terminal
# Nur Claude-Modelle auflisten curl https://api.ofox.ai/anthropic/v1/models/anthropic

Antwortformat

Das Antwortformat entspricht dem der vollständigen Modellliste. Das data-Array enthält nur Modelle des angegebenen Anbieters.

Modelldetails abrufen

GET https://api.ofox.ai/anthropic/v1/models/{provider}/{model_id}

Pfadparameter

ParameterTypBeschreibung
providerstringAnbieterkennung, z.B. anthropic
model_idstringModellname, z.B. claude-sonnet-4.5

Anfragebeispiel

Terminal
curl https://api.ofox.ai/anthropic/v1/models/anthropic/claude-sonnet-4.5

Antwortformat

Gibt ein einzelnes Model-Objekt zurück, dessen Struktur dem Objekt in der Listenabfrage entspricht.

Last updated on