Skip to main content

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.

APIXO has two main API patterns:
  • Generation APIs for image, video, and audio models. These are async because generation can take seconds or minutes.
  • LLM Gateway for Claude, OpenAI, and Gemini compatible APIs. These behave like direct provider API calls.

API families

API familyBase URLBest forResult pattern
Generation APIshttps://api.apixo.ai/api/v1Images, videos, music, and other generated mediagenerateTask plus statusTask or webhooks
LLM Gatewayhttps://llm.apixo.aiChat, coding tools, agents, and LLM appsDirect non-streaming or streaming response

Generation task flow

  1. Submit a task to POST /generateTask/{model}.
  2. Receive a taskId.
  3. Poll GET /statusTask/{model}?taskId=... or receive a webhook.
  4. Read the final result when state is success.
This flow is used by image, video, and audio models because provider generation time is not instant.

LLM Gateway flow

  1. Pick the compatible API format your app already supports.
  2. Set the base URL to https://llm.apixo.ai.
  3. Use your APIXO API key in the provider-compatible auth header.
  4. Keep the official request body and model field.
Use LLM Gateway Overview when you are connecting official SDKs or third-party apps.

Routing strategies

APIXO routing is configured per API key:
StrategyBest forBehavior
AutoMost usersValue-first with failover to Official routes
ValueCost-sensitive workloadsPartner routes optimized for price
OfficialMission-critical workloadsOfficial or officially authorized routes
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.

LLM Gateway Overview

Use official LLM API formats through APIXO.

Errors

Debug failed requests and task failures.