Skip to main content
Before diving into the API reference, understand these core concepts that power APIXO.

Authentication

How to get and use your API key

Async Workflow

The submit → poll/callback → result pattern

Routing Strategies

Auto, Value, and Official routing options

Quick Overview

1. Authentication

All requests require a Bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Get your API key from Dashboard → API Keys.

2. Async Workflow

APIXO uses an asynchronous pattern for all generation tasks:
  1. Submit a task → receive a taskId
  2. Poll for status or receive a webhook callback
  3. Retrieve results when state: "success"
This design handles long-running AI generation (images can take 10-60 seconds, videos even longer).

3. Routing Strategies

Choose how requests are routed to providers:
StrategyDescription
AutoValue-first with automatic failover (recommended)
ValueLowest price via partner providers
OfficialHighest reliability via official channels

Next Steps

Quickstart

Generate your first image in 5 minutes

API Reference

Detailed endpoint documentation