- Generation APIs for image, video, and audio models. These are async because generation can take seconds or minutes.
- Chat API for Claude, OpenAI, and Gemini compatible APIs. It behaves like a direct provider API through APIXO’s LLM gateway.
API families
Generation task flow
- Submit a task to
POST /generateTask/{model}. - Receive a
taskId. - Poll
GET /statusTask/{model}?taskId=...or receive a webhook. - Read the final result when
stateissuccess.
Chat API flow
- Pick the compatible API format your app already supports.
- Set the base URL to
https://llm.apixo.ai. - Use your APIXO API key in the provider-compatible auth header.
- Keep the official request body and model field.
Routing strategies
APIXO routing is configured per API key:
See Routing Strategies for details.
Key pages
Quickstart
Generate your first image with the async task flow.
Generation API Overview
Browse image, video, and audio model API docs.
Chat API Overview
Use official LLM API formats through APIXO.
Errors
Debug failed requests and task failures.