AI ROUTER is an OpenAI-compatible ChatGPT API relay for developers who want a practical API key, usage visibility, and low-friction onboarding.
New users currently get 20U total credit:
5Uavailable on signup15Uunlocked after top-up
Use the OpenAI-style endpoint, connect existing apps with minimal code changes, and monitor API key usage from the dashboard.
| Language | Landing page |
|---|---|
| English | https://ai-router.dev |
| 中文 | https://ai-router.dev/cn |
| Русский | https://ai-router.dev/ru |
| فارسی | https://ai-router.dev/fa |
Developer examples:
- OpenAI-compatible examples repo: https://github.com/airouter-dev/ai-router-openai-compatible-examples
- Localized landing page index: https://github.com/airouter-dev/ai-router-openai-compatible-examples/blob/main/docs/localized-landing-pages.md
- API endpoint:
https://api.ai-router.dev/v1 - Website: https://ai-router.dev
High-intent developer guides:
- ChatGPT API relay for development, testing, scripts, and AI apps.
- OpenAI-compatible API calls for lower migration cost.
- API key management with usage, quota, balance, and subscription visibility.
- New-user onboarding with
20Utotal credit (5Uon signup,15Uunlocked after top-up). - Daily and weekly ChatGPT API plans for short tests and ongoing workflows.
AI ROUTER is not an official OpenAI service. It provides an independent relay service with OpenAI-compatible request patterns. Availability, model names, plans, and pricing are shown in the product dashboard.
curl https://api.ai-router.dev/v1/chat/completions \
-H "Authorization: Bearer $AI_ROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4.1-mini",
"messages": [
{ "role": "user", "content": "Say hello from AI ROUTER." }
]
}'