APIXO is a drop-in LLM API gateway. If your code or app already supports Claude, OpenAI, or Gemini API formats, you usually only need to change the base URL, API key, and model id.Documentation Index
Fetch the complete documentation index at: https://apixo.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Fastest setup
- Create an API key in the APIXO dashboard.
- Store it as
APIXO_API_KEY. - Use the compatible API format your app already supports.
- Change the
modelvalue when you want to switch models.
Choose your API format
| If your app supports | Use this Base URL | API key setting | Model example |
|---|---|---|---|
| Claude / Anthropic | https://llm.apixo.ai | APIXO_API_KEY | claude-sonnet-4-6 |
| OpenAI Responses | https://llm.apixo.ai/v1 | APIXO_API_KEY | gpt-5.4 |
| Gemini | https://llm.apixo.ai | APIXO_API_KEY | gemini-3.1-pro-preview |
Minimal requests
- Claude
- OpenAI
- Gemini
Switch models
To switch models, keep the same API format and change only the model id.| API format | Where to change the model |
|---|---|
| Claude | Request body model |
| OpenAI Responses | Request body model |
| Gemini | URL path /v1beta/models/{model}:generateContent |
Next steps
Use official SDKs
Configure Claude, OpenAI, and Gemini compatible SDK clients.
Configure third-party apps
Use APIXO in apps that accept a custom provider endpoint.
Supported models
Copy a model id for Claude, OpenAI, or Gemini compatible requests.
Errors and retry
Troubleshoot authentication, unsupported models, and upstream failures.