Tool-Kompatibilität
Welche Basis-URL sollten Sie in Ihr Tool einfügen? Fast jedes Problem lässt sich auf eine von zwei Antworten zurückführen:
- Tools im OpenAI-Stil benötigen
https://synthorai.io/v1(einschließlich the/v1). - Tools im Anthropic-Stil benötigen
https://synthorai.io(kein/v1— das SDK hängt es an).
Dedicated step-by-step guides: Claude Code, OpenAI Codex CLI, and OpenClaw.
Kurzreferenz
| Tool | Einzufügende base URL | Schlüsselfeld / Umgebungsvariable |
|---|---|---|
| Claude Code (CLI) | https://synthorai.io | ANTHROPIC_API_KEY |
| Anthropic Python / Node SDK | https://synthorai.io | api_key= (Konstruktor) |
| OpenAI Codex CLI | https://synthorai.io/v1 | OPENAI_API_KEY |
| OpenAI Python / Node SDK | https://synthorai.io/v1 | api_key= (Konstruktor) |
| OpenClaw (provider.type=openai) | https://synthorai.io/v1 | providers.X.api_key |
| OpenClaw (provider.type=anthropic) | https://synthorai.io | providers.X.api_key |
| Cursor (OpenAI-Override) | https://synthorai.io/v1 | Settings → API-Schlüssel |
| Continue (config.json) | https://synthorai.io/v1 | models[].apiKey |
| Aider | https://synthorai.io/v1 | OPENAI_API_KEY |
| LangChain ChatOpenAI | https://synthorai.io/v1 | openai_api_key |
| LangChain ChatAnthropic | https://synthorai.io | anthropic_api_key |
| LiteLLM proxy | siehe LiteLLM-Konfiguration | api_key pro Route |
| Raw curl (OpenAI-Stil) | https://synthorai.io/v1/... | Authorization: Bearer |
| Raw curl (Anthropic-Stil) | https://synthorai.io/v1/messages | x-api-key Header |
Welches Protokoll spricht jedes Tool?
Das vom Tool verwendete Protokoll bestimmt, welche Upstream-Modelle es über das Gateway erreichen kann:
- OpenAI Chat Completions (
/v1/chat/completions) — leitet weiter an beliebig Chat-Modell: OpenAI, Anthropic, Google, Qwen, DeepSeek und mehr. Dies ist der universelle Pfad — der Standard für Codex, Aider, Cursor, Continue, OpenClaw-OpenAI, LangChain ChatOpenAI usw. - Anthropic Messages (
/v1/messages) — leitet nur an Modelle der Claude-Familie über Anthropic- oder Bedrock-Anthropic-Kanäle weiter. Verwendet von Claude Code, den Anthropic SDKs, OpenClaw-Anthropic und LangChain ChatAnthropic.
Wenn ein Tool nicht aufgeführt ist, versuchen Sie zuerst das OpenAI-Format (https://synthorai.io/v1 + beliebiges Chat-Modell). Das deckt 90 % der Community-Integrationen ab.
Sobald Ihr Tool eingerichtet ist, wählen Sie ein Standardmodell aus dem model price comparison — oder schätzen Sie die Kosten eines Nutzungsmonats mit dem LLM cost calculator.