Setup Guide

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

1

Choose Your Plan

Pick the plan that fits your needs:

View Plans →
2

Sign Up & Get Your API Key

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.

Sign Up / Login →Dashboard → Keys
3

Install in OpenClaw

Run this one-liner to configure your OpenClaw agent:

Setup command
curl -fsSL https://www.clawrouters.com/setup.sh | bash -s -- cr_YOUR_KEY_HERE

Or manually add to your OpenClaw config (~/.openclaw/openclaw.json):

Manual config
{
  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" }
    }
  }
}
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