DaoXE is an OpenAI-compatible multi-model API gateway for developers. Use one API base URL to integrate and switch between available AI models without rewriting the application layer for each provider.
Service availability: DaoXE is not available in mainland China. Chinese-language documentation does not mean that the service can be used there. Use DaoXE only from regions allowed by its terms.
- Website: daoxe.com
- API base URL:
https://daoxe.com/v1 - Models and pricing: daoxe.com/pricing
- Tested examples: DaoXE-AI
- Client setup for Cline, Roo Code, and Continue: CLIENT_SETUP.md
- Simplified Chinese guide: README.zh-CN
- Traditional Chinese guide: README.zh-TW
- Postman collection and v0.2.0 release: DaoXE API examples v0.2.0
curl https://daoxe.com/v1/chat/completions \
-H "Authorization: Bearer $DAOXE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MODEL_NAME",
"messages": [{"role": "user", "content": "Hello"}]
}'The examples repository includes curl, Python, Node.js, low-cost smoke/compare benchmarks, and a Postman collection. Choose a model from the live pricing page and keep the API key outside source control.
- Cherry Studio provider proposal
- LobeHub model-provider proposal
- Chatbox provider proposal
- models.dev provider proposal
- Jan provider proposal
DaoXE — OpenAI-compatible API gateway для работы с несколькими AI-моделями через один endpoint. Для миграции существующего проекта обычно достаточно заменить API key, base_url и название модели.
- Сайт: daoxe.com
- Модели и цены: daoxe.com/pricing
- Примеры для curl, Python, Node.js и Postman: DaoXE-AI