Tokaroo + OpenClaw
One API key. Real-time AI routing across 199+ AI models from Anthropic, Google, Groq, and OpenAI - chat, images, speech, and video - optimized for cost, latency, and automatic failover. Connect in under 60 seconds.
Install the published Tokaroo provider plugin in one command, or keep the manual OpenAI-compatible provider block as a fallback.
Recommended setup: plugin install
This gives you the native OpenClaw plugin flow and keeps Tokaroo discoverable in the OpenClaw ecosystem.
openclaw plugins install clawhub:tokaroo-openclaw-provider# ~/.openclaw/.env (or export in your shell)
TOKAROO_API_KEY=tok_...openclaw restartFallback: manual OpenAI-compatible config
If you do not want the plugin, Tokaroo still works as a manual OpenAI-compatible provider in OpenClaw.
// ~/.openclaw/openclaw.json
{
models: {
mode: "merge",
providers: {
tokaroo: {
baseUrl: "https://api.tokaroo.com/v1",
apiKey: "${TOKAROO_API_KEY}",
api: "openai-completions",
models: [
{ id: "auto", name: "Tokaroo Auto - best value, automatic routing" },
{ id: "fast", name: "Tokaroo Fast - speed-optimized, low latency" },
{ id: "max", name: "Tokaroo Max - highest capability" },
]
}
}
},
agents: {
defaults: { model: "tokaroo/auto" }
}
}# ~/.openclaw/.env (or export in your shell)
TOKAROO_API_KEY=tok_...openclaw restartWhat your agents get
With local models (Ollama / vLLM)
Already running Ollama locally? Tokaroo can route simple requests to your local models and fall back to cloud for complex tasks - automatically.
// With local Ollama models alongside Tokaroo
{
models: {
mode: "merge",
providers: {
tokaroo: {
baseUrl: "https://api.tokaroo.com/v1",
apiKey: "${TOKAROO_API_KEY}",
api: "openai-completions",
models: [
{ id: "auto", name: "Tokaroo Auto" },
{ id: "fast", name: "Tokaroo Fast" },
{ id: "max", name: "Tokaroo Max" },
]
},
local: {
baseUrl: "http://localhost:11434/v1",
apiKey: "local",
api: "openai-completions",
models: [
{ id: "llama3.2", name: "Llama 3.2 (local)" },
{ id: "mistral", name: "Mistral (local)" }
]
}
}
},
agents: {
defaults: { model: "tokaroo/auto" }
}
}Ready to connect?
Create your API key and have your agents routing through Tokaroo in under a minute.
Create API key