API Gateway

RouterDone

Operational

OpenAI-compatible endpoint for authorized RouterDone customers. Use the base URL below with your issued API key.

Base URL

http://localhost:20128/v1

List models

/v1/models

Chat completions

/v1/chat/completions

Anthropic-compatible messages

/v1/messages

Health check

/api/health

Quick test

v2.0.7
curl http://localhost:20128/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4o-mini",
    "messages": [{"role": "user", "content": "Hello"}]
  }'