Get ClawRouters running with your AI agent in under 60 seconds.
Create an account, then generate your ClawRouters API key from the dashboard.
Add your API keys for the providers you want to use (OpenAI, Anthropic, Google, etc). ClawRouters will route to the models you have access to.
Run this one-liner to configure your OpenClaw agent:
openclaw onboard --auth-choice apiKey --token-provider openrouter --token "cr_YOUR_KEY_HERE"
Or manually add to your OpenClaw config:
{
agents: {
defaults: {
model: { primary: "clawrouters/auto" }
}
}
}Verify everything works with a dry-run request:
curl https://www.clawrouters.com/api/v1/chat/completions \
-H "Authorization: Bearer cr_YOUR_KEY" \
-H "Content-Type: application/json" \
-H "X-Dry-Run: true" \
-d '{"model":"auto","messages":[{"role":"user","content":"Hello"}]}'If you get a 200 response, you're all set! 🎉