Get started with Omniroute.pro in 3 simple steps.
Sign up at omniroute.pro/register
Go to your dashboard and add your API keys:
Copy your API token from the dashboard and use it in your tools.
After logging in, go to your dashboard. You'll see your API token displayed prominently.
API Token: omr_1234567890abcdef...https://omniroute.pro/api/omnirouteTo use Omniroute.pro with Cursor IDE:
{
"openai_api_base": "https://omniroute.pro/api/omniroute",
"openai_api_key": "your-api-token-here"
}Now you can use any model through Cursor:
To use Omniroute.pro with Cline (VS Code extension):
API Base URL: https://omniroute.pro/api/omniroute API Key: your-api-token-here
OpenAI-compatible endpoint for chat completions:
POST https://omniroute.pro/api/omniroute/v1/chat/completions
Headers:
Authorization: Bearer your-api-token
Content-Type: application/json
Body:
{
"model": "gpt-4",
"messages": [
{"role": "user", "content": "Hello!"}
]
}curl https://omniroute.pro/api/omniroute/v1/chat/completions \
-H "Authorization: Bearer your-api-token" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [{"role": "user", "content": "Hello!"}]
}'Omniroute.pro supports 160+ AI models. Here are some popular ones:
All API keys are encrypted using AES-256-GCM encryption. Your keys are:
Each user's API keys are completely isolated. You only use YOUR keys, never shared with other users.
Contact us at support@omniroute.pro