One URL change · Same SDK
Integrations
VoltAI exposes the OpenAI /v1/* endpoints and the Anthropic /v1/messages endpoint. Anything that speaks either protocol works out of the box — point it at api.voltai.one and use a VoltAI API key.
| Client | Protocol | Where to set base URL | Base URL |
|---|---|---|---|
| 🧠Claude Code | Anthropic /v1/messages | ANTHROPIC_BASE_URL / ANTHROPIC_AUTH_TOKEN | https://api.voltai.one |
| ⌨️Codex CLI | OpenAI-compatible | OPENAI_BASE_URL / OPENAI_API_KEY | https://api.voltai.one/v1 |
| 📝Cursor | OpenAI-compatible | Settings → Models → OpenAI Base URL | https://api.voltai.one/v1 |
| 🤖Cline | OpenAI + Anthropic | VS Code extension settings | https://api.voltai.one |
| ➡️Continue | OpenAI-compatible | ~/.continue/config.json → apiBase | https://api.voltai.one/v1 |
| 💬ChatBox | OpenAI-compatible | Settings → AI Provider → API Host | https://api.voltai.one/v1 |
| 📂OpenCode | OpenAI-compatible | OPENAI_BASE_URL | https://api.voltai.one/v1 |
| 🍒Cherry Studio | OpenAI-compatible | Settings → Model Provider → Custom | https://api.voltai.one/v1 |
| 🐍OpenAI SDK | OpenAI-compatible | OpenAI(base_url=…, api_key=…) | https://api.voltai.one/v1 |
| 📐Anthropic SDK | Anthropic /v1/messages | Anthropic(base_url=…, api_key=…) | https://api.voltai.one |
| ▲Vercel AI SDK | OpenAI-compatible | createOpenAI({ baseURL }) | https://api.voltai.one/v1 |
| 🔗LangChain | OpenAI-compatible | ChatOpenAI(openai_api_base=…) | https://api.voltai.one/v1 |
Don't see your tool?
If it can hit any OpenAI-compatible base URL, it works. If it needs Anthropic's /v1/messages, it works (see the Claude Code setup guide). Email support@voltai.one with the tool name and we'll confirm or add a recipe.
Official SDKs, unmodified
VoltAI forwards to the upstream byte-for-byte. The OpenAI SDK sees OpenAI-shaped responses, the Anthropic SDK sees Anthropic-shaped responses. We do not ship a VoltAI-specific SDK — there is nothing for us to add on top of what the vendors already publish.