Get ClawRouters running with your AI agent in under 60 seconds.
Pick the plan that fits your needs:
Create your account and grab your ClawRouters API key from the dashboard. That's it — Starter and Pro plans come with all model access included. No need to configure individual provider keys.
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! 🎉