RouteMux Docs

Getting started

Create your first RouteMux key and make your first request.

Get from zero to your first response in four steps.

  1. Sign up at routemux.com and top up your wallet.
  2. Create an API key in the Platform console.
  3. Point any OpenAI-compatible SDK at https://api.routemux.com/v1.
  4. Send your first request and watch usage stream into the dashboard.
curl https://api.routemux.com/v1/chat/completions \
  -H "Authorization: Bearer $ROUTEMUX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-5.5",
    "messages": [{ "role": "user", "content": "Say hi from RouteMux" }]
  }'

Agent friendly

Need this page in raw Markdown? Append .md to the URL — every doc page ships an agent-friendly plaintext view.