> ## Documentation Index
> Fetch the complete documentation index at: https://docs.audiopod.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# AudioPod AI

> AI-powered audio processing APIs. Audiobook production, stem separation, transcription, voice cloning, music generation, and more.

## Get Started in 5 Minutes

<Card title="Quick Start →" icon="rocket" href="/quickstart">
  Create account, get API key, make your first call.
</Card>

***

## Install SDK

<Tabs>
  <Tab title="Python">
    ```bash theme={null}
    pip install audiopod
    ```
  </Tab>

  <Tab title="Node.js">
    ```bash theme={null}
    npm install audiopod
    ```
  </Tab>

  <Tab title="cURL">
    No installation needed — use cURL directly with `X-API-Key` header.
  </Tab>
</Tabs>

***

## Hello World

```python theme={null}
from audiopod import AudioPod

client = AudioPod()  # Uses AUDIOPOD_API_KEY env var

# Separate a song into vocals, drums, bass, guitar, piano, other
result = client.stems.separate(
    url="https://youtube.com/watch?v=VIDEO_ID",
    mode="six"
)

print(result["download_urls"])
```

***

## What Can You Build?

<Columns cols={2}>
  <Card title="📚 Audiobook" href="/api-reference/audiobook">
    Manuscript to ACX-ready audiobook via API. Upload PDF/EPUB, narrate, export — with completion webhooks.
  </Card>

  <Card title="🎵 Stem Separation" href="/api-reference/stem-splitter">
    Isolate vocals, drums, bass, guitar from any song. 2-16 stem modes.
  </Card>

  <Card title="🎤 Voice Cloning" href="/api-reference/voice-management">
    Clone any voice from 10 seconds of audio. Generate speech in that voice.
  </Card>

  <Card title="📝 Transcription" href="/api-reference/speech-to-text">
    Convert audio/video to text. Speaker diarization, 50+ languages.
  </Card>

  <Card title="🎹 Music Generation" href="/api-reference/music/overview">
    Generate music from text prompts. Any genre, any duration.
  </Card>

  <Card title="🔇 Noise Reduction" href="/api-reference/noise-reduction">
    Remove background noise from audio. Multiple quality modes.
  </Card>

  <Card title="👥 Speaker Separation" href="/api-reference/speaker-separation">
    Identify and separate speakers from recordings.
  </Card>

  <Card title="🗣️ Text-to-Speech" href="/api-reference/text-to-speech">
    150+ voices, 64+ languages. SSML support.
  </Card>

  <Card title="🎙️ Voice Changer" href="/api-reference/voice-changer">
    Transform voices with AI-powered style transfer.
  </Card>
</Columns>

***

## Pricing

Pay-as-you-go. No subscriptions required. Add funds to your wallet and use.

| Service            | Rate       |
| ------------------ | ---------- |
| Stem Separation    | \$0.10/min |
| Transcription      | \$0.01/min |
| Voice Cloning/TTS  | \$0.04/min |
| Voice Conversion   | \$0.13/min |
| Speech Translation | \$0.40/min |
| Music Generation   | \$0.04/min |
| Speaker Separation | \$0.20/min |
| Karaoke Generation | \$0.25/min |

<Card title="View Full Pricing →" icon="calculator" href="/account/api-wallet">
  Complete pricing for all 14+ services
</Card>

***

## Resources

<Columns cols={3}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Zero to API call in 5 minutes
  </Card>

  <Card title="Python SDK" icon="python" href="/sdks/python">
    Full Python SDK reference
  </Card>

  <Card title="Node.js SDK" icon="node-js" href="/sdks/nodejs">
    Full Node.js SDK reference
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/stem-splitter">
    Complete endpoint documentation
  </Card>

  <Card title="API Status" icon="activity" href="https://api.audiopod.ai/health">
    Check service health
  </Card>

  <Card title="Support" icon="envelope" href="mailto:support@audiopod.ai">
    Get help from our team
  </Card>
</Columns>
