Skip to main content
Welcome to the Audixa API Reference. This section provides detailed documentation for all API endpoints.

Base URL

All API requests are made to:
https://api.audixa.ai/v2

Authentication

All endpoints require authentication via the x-api-key header:
-H "x-api-key: YOUR_API_KEY"

Learn More

See the Authentication guide for details on obtaining and using API keys.

Async Workflow

Audixa uses an asynchronous workflow for audio generation:
1

Submit TTS Request

POST to /tts with your text, voice, and model. Receive a generation_id.
2

Poll Status

GET /status with your generation_id until status is Completed.
3

Download Audio

Fetch the audio file from the returned url.

Available Endpoints

Response Format

All responses are JSON. Successful responses return status 2xx with the requested data. Success example:
{
  "generation_id": "gen_abc123xyz789"
}
Error example:
{
  "detail": "Error message explaining what went wrong"
}