Get ClawRouters running with your AI agent in under 60 seconds.
Two paths — pick whichever fits:
Create your account and grab your ClawRouters API key (the cr_… key) from the dashboard. On Free? Also add a provider key at /dashboard/models — Free plan can't make calls until at least one BYOK provider key is configured. Paid plans skip this step.
Run this one-liner to configure your OpenClaw agent:
curl -fsSL https://www.clawrouters.com/setup.sh | bash -s -- cr_YOUR_KEY_HERE
Or manually add to your OpenClaw config (~/.openclaw/openclaw.json):
{
models: {
providers: {
clawrouters: {
baseUrl: "https://www.clawrouters.com/api/v1",
apiKey: "cr_YOUR_KEY_HERE",
api: "openai-completions",
models: [{ id: "auto", name: "ClawRouters Auto" }]
}
}
},
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! 🎉