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/v1List models
/v1/modelsChat completions
/v1/chat/completionsAnthropic-compatible messages
/v1/messagesHealth check
/api/healthQuick test
v2.0.7curl 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"}]
}'