> ## 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.

# Generation API Overview

> Async image, video, and audio model APIs on APIXO

Use the Generation APIs for image, video, and audio models. Most model pages in this section are asynchronous: you submit a task, receive a `taskId`, then poll for completion or receive a webhook callback. A small number of lightweight models may return final results directly; their individual pages call that out explicitly.

## Base URL

```text theme={null}
https://api.apixo.ai/api/v1
```

## Request flow

| Step     | Endpoint                              | Purpose                                     |
| -------- | ------------------------------------- | ------------------------------------------- |
| 1        | `POST /generateTask/{model}`          | Submit a generation task                    |
| 2        | `GET /statusTask/{model}?taskId={id}` | Poll task status and retrieve results       |
| Optional | `callback_url` in the request body    | Receive webhook delivery instead of polling |

## Start here

<CardGroup>
  <Card title="Generate Task" href="/api-reference/generate-task">
    Submit an image, video, or audio generation task.
  </Card>

  <Card title="Status Task" href="/api-reference/status-task">
    Poll for task progress, final results, and failures.
  </Card>

  <Card title="Webhooks" href="/api-reference/webhooks">
    Receive task completion callbacks in production.
  </Card>

  <Card title="Parameter Specification" href="/api-reference/parameters">
    Compare common request fields across models.
  </Card>
</CardGroup>

## Model categories

<CardGroup>
  <Card title="Image Models" href="/models/image/nano-banana">
    Generate images, edit references, upscale, and create variations.
  </Card>

  <Card title="Video Models" href="/models/video/sora-2">
    Generate videos from text, images, first and last frames, or references.
  </Card>

  <Card title="Audio Models" href="/models/audio/suno">
    Generate music, speech, and voice outputs.
  </Card>

  <Card title="LLM Gateway" href="/llm">
    Looking for Claude, OpenAI, or Gemini compatible APIs? Use the LLM Gateway.
  </Card>
</CardGroup>

## Browse by provider

| Category | Provider or family | Models                                                                          |
| -------- | ------------------ | ------------------------------------------------------------------------------- |
| Image    | Google             | Nano Banana, Nano Banana Pro, Nano Banana 2                                     |
| Image    | OpenAI             | GPT Image 1, GPT Image 2                                                        |
| Image    | xAI                | Grok Image                                                                      |
| Image    | Black Forest Labs  | Flux 2, Flux Kontext                                                            |
| Image    | Midjourney         | Midjourney                                                                      |
| Image    | Runway             | Runway Gen4 Image, Runway Gen4 Image Turbo                                      |
| Image    | ByteDance          | Seedream 4.0, Seedream 4.5, Seedream 5.0, Seedream 5.0 Pro                      |
| Image    | Alibaba            | Wan 2.5 Image, Wan 2.6 Image, Wan 2.7 Image                                     |
| Image    | APIXO              | Image Upscaler, Image Watermark Remover                                         |
| Video    | OpenAI             | Sora 2, Sora 2 Pro                                                              |
| Video    | Runway             | Runway Gen4 Video Turbo                                                         |
| Video    | Google             | Veo 3.1 (including Extend modes), Gemini Omni                                   |
| Video    | Alibaba            | Wan 2.2 Animate, Wan 2.5, Wan 2.6, Wan 2.7, HappyHorse                          |
| Video    | ByteDance          | Seedance 1.5 Pro (including Video Extend mode), Seedance 2.0, Seedance 2.0 Fast |
| Video    | Kuaishou           | Kling 2.1, Kling 2.5 Turbo Pro, Kling 2.6, Kling 3.0                            |
| Video    | MiniMax / Hailuo   | Hailuo 2.3, Hailuo 2.3 Fast                                                     |
| Video    | Vidu, LTX, Avatar  | Vidu Q3, LTX 2 19B, InfiniteTalk                                                |
| Audio    | Suno               | Suno                                                                            |
| Audio    | Alibaba            | CosyVoice 3 Flash, CosyVoice 3 Plus, CosyVoice 3.5 Flash, CosyVoice 3.5 Plus    |
| Audio    | MiniMax            | MiniMax Speech 2.8, MiniMax Voice                                               |

## Choosing a generation model

| Goal                                 | Good starting point                                               |
| ------------------------------------ | ----------------------------------------------------------------- |
| Fast image prototype                 | Nano Banana                                                       |
| Higher-quality image generation      | Flux 2, GPT Image 2, Seedream 4.0, Seedream 5.0, Seedream 5.0 Pro |
| Artistic image generation            | Midjourney                                                        |
| Reference-guided image generation    | Runway Gen4 Image, Runway Gen4 Image Turbo                        |
| Alibaba image generation and editing | Wan 2.7 Image                                                     |
| Image upscaling                      | Image Upscaler                                                    |
| Watermark cleanup                    | Image Watermark Remover                                           |
| Text-to-video                        | Sora 2, Veo 3.1, Gemini Omni, Wan 2.5                             |
| Image-to-video                       | Runway Gen4 Video Turbo, Sora 2 Pro, Hailuo 2.3, Kling 2.6        |
| Music generation                     | Suno                                                              |
| Text-to-speech or voice cloning      | CosyVoice 3.5 Plus, MiniMax Speech 2.8, MiniMax Voice             |

## From playground to API

If you came here from an APIXO model playground, open the matching model page in the sidebar. Each model page includes:

* Model ID and endpoints
* A copy-paste request
* Supported request parameters
* Response and result format
* Polling, webhook, error, and retry guidance

<Info>
  Pricing is maintained on the <a href="https://apixo.ai/pricing">Pricing</a> page. Use it as the source of truth for current model prices and route differences.
</Info>
