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

# Welcome to Uplift AI

> Build voice-powered applications with state-of-the-art Urdu TTS

<Info>
  **Quick Start**: Jump straight to [Text-to-Speech API](/orator) or explore our [Interactive Demos](#try-it-now)
</Info>

## What We Do

Uplift AI provides developers with powerful APIs to create voice-enabled applications, specializing in high-quality Urdu text-to-speech that actually sounds natural.

<CardGroup cols={3}>
  <Card title="~300ms Latency" icon="bolt">
    Real-time streaming for conversational AI applications
  </Card>

  <Card title="Natural Urdu" icon="microphone">
    Native pronunciation, not robotic transliteration
  </Card>
</CardGroup>

## Try It Now

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST https://api.upliftai.org/v1/synthesis/text-to-speech \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "voiceId": "v_8eelc901",
        "text": "Hello, this is a test",
        "outputFormat": "MP3_22050_128"
      }' \
      --output test.mp3
    ```
  </Tab>

  <Tab title="JavaScript">
    ```javascript theme={null}
    const response = await fetch('https://api.upliftai.org/v1/synthesis/text-to-speech', {
      method: 'POST',
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({
        voiceId: 'v_8eelc901',
        text: 'Hello, this is a test',
        outputFormat: 'MP3_22050_128'
      })
    });

    const audioBlob = await response.blob();
    // Play or save the audio
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    import requests

    response = requests.post(
      'https://api.upliftai.org/v1/synthesis/text-to-speech',
      headers={
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
      },
      json={
        'voiceId': 'v_8eelc901',
        'text': 'Hello, this is a test',
        'outputFormat': 'MP3_22050_128'
      }
    )

    with open('output.mp3', 'wb') as f:
      f.write(response.content)
    ```
  </Tab>
</Tabs>

## Popular Use Cases

<CardGroup cols={2}>
  <Card title="WhatsApp Bots" icon="whatsapp" href="/tutorials/whatsapp-bot">
    Build conversational bots that speak naturally in Urdu
  </Card>

  <Card title="Voice Agents" icon="robot" href="/tutorials/livekit-voice-agent">
    Create real-time voice assistants with LiveKit
  </Card>

  <Card title="Educational Apps" icon="graduation-cap">
    Make content accessible with natural voice narration
  </Card>

  <Card title="News Delivery" icon="newspaper">
    Convert articles to audio with authentic news anchor voices
  </Card>
</CardGroup>

## Choose Your Integration Path

<Steps>
  <Step title="Get Your API Key" icon="key">
    Visit [platform.upliftai.org](https://platform.upliftai.org/studio/home) to generate your API key
  </Step>

  <Step title="Pick Your Approach" icon="code">
    <CardGroup cols={2}>
      <Card title="REST API" href="/orator">
        Simple HTTP requests for one-time conversions
      </Card>

      <Card title="WebSocket" href="/websocket-tts">
        Real-time streaming for conversational AI
      </Card>
    </CardGroup>
  </Step>

  <Step title="Select Your Voice" icon="users">
    Choose from multiple voice profiles optimized for different use cases:

    * **Info/Education** - Clear and articulate
    * **Nostalgic News** - Classic broadcaster style
    * **Dada Jee** - Storytelling voice
    * **Gen Z** - Modern, energetic delivery

    [Listen to voice samples →](/orator_voices)
  </Step>

  <Step title="Start Building" icon="rocket">
    Check out our [tutorials](/tutorials) for complete implementation examples
  </Step>
</Steps>

## Real-World Example

See how businesses use Uplift AI to enhance user engagement:

<Frame caption="Voice-enabled banking app allowing users to open accounts through natural conversation">
  <img src="https://mintcdn.com/upliftai/2tcJSpA9F8g1W_V1/images/intro-app-example.png?fit=max&auto=format&n=2tcJSpA9F8g1W_V1&q=85&s=ad69d4ce9b752bf9a97a871f69c312ba" alt="Banking app with voice interface" width="1366" height="876" data-path="images/intro-app-example.png" />
</Frame>

## Need Help?

<CardGroup cols={3}>
  <Card title="API Reference" icon="book" href="/orator">
    Complete API documentation
  </Card>

  <Card title="Support" icon="life-ring" href="mailto:founders@upliftai.org">
    Get help from our team
  </Card>

  <Card title="Community" icon="users" href="https://www.linkedin.com/company/upliftai">
    Join our developer community
  </Card>
</CardGroup>
