Setup Guide

Get ClawRouters running with your AI agent in under 60 seconds.

1

Sign Up & Get Your API Key

Create an account, then generate your ClawRouters API key from the dashboard.

Sign Up / Login →Dashboard → Keys
2

Configure Your Model Keys

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.

Dashboard → Models
3

Install in OpenClaw

Run this one-liner to configure your OpenClaw agent:

One-liner
openclaw onboard --auth-choice apiKey --token-provider openrouter --token "cr_YOUR_KEY_HERE"

Or manually add to your OpenClaw config:

Manual config
{
  agents: {
    defaults: {
      model: { primary: "clawrouters/auto" }
    }
  }
}
4

Test It

Verify everything works with a dry-run request:

cURL test
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! 🎉

Need Help?

Join our community or reach out directly.

Contact Support