/APIXO Docs

Getting Started

Learn how to integrate with the APIXO API in minutes

Getting Started

Welcome to APIXO! This guide will help you get up and running with our AI generation APIs.

What is APIXO?

APIXO provides a unified API for accessing multiple AI models for image, video, and audio generation. One API key, one consistent interface, access to all models.

How It Works

Submit a Generation Task

Send a POST request to /generateTask/{model} with your prompt and parameters.

POST /api/v1/generateTask/nano-banana
{ "input": { "prompt": "A beautiful sunset..." } }

Receive Task ID

APIXO immediately returns a task ID for tracking.

{ "data": { "taskId": "task_abc123" } }

Poll for Results

Check status via GET /statusTask/{model}?taskId=xxx (or use webhooks).

Download Your Content

When state: "success", retrieve your generated images/videos from resultUrls.

{ "data": { "state": "success", "resultUrls": ["https://..."] } }

Supported Content Types

TypeModelsUse Cases
ImageNano Banana, Flux-2, Midjourney, GPT-Image-1Marketing, design, art
VideoSora 2, Veo 3.1, Wan 2.5Ads, social media, presentations
AudioSunoMusic, podcasts, voiceovers

Next Steps

Ready to start? Head to Authentication to get your API key.

On this page