Quickstart

From API key
to first token.

One base URL. One key. One complete request you can run in about a minute—without creating an account.

Your first request, end to end

Every value is literal except the key. The response below is clearly marked as simulated.

About 60 seconds
curl https://api.minirouter.sh/v1/chat/completions \
  -H "Authorization: Bearer $MINIROUTER_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "meta/llama-3.3-70b",
    "messages": [{"role":"user","content":"ping"}],
    "stream": true
  }'