Custom OpenAI-Compatible Providers Are Now Supported

Bring your own OpenAI-compatible endpoints and route them via UniterRouter.

UniterRouter

You can now register custom OpenAI-compatible providers in UniterRouter. Perfect for internal deployments or specialized third-party APIs that speak the OpenAI Chat Completions format.

Configure a Custom Provider

Add a provider in the UI (lowercase name, base URL, and token). Then call models via {providerName}/{modelName}:

curl -X POST "https://api.uniterouter.ai/v1/chat/completions" \
-H "Authorization: Bearer $UNITEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mycompany/custom-gpt-4",
"messages": [{"role": "user", "content": "Hello from my custom provider!"}]
}'

Requirements include a lowercase provider name and a valid HTTPS base URL. See details in the docs: Custom Providers.