> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Start using 60db in under 5 minutes

## Get Your API Key

First, you'll need an API key to authenticate your requests:

<Steps>
  <Step title="Sign Up">
    Create an account at [app.60db.ai](https://app.60db.ai)
  </Step>

  <Step title="Navigate to API Keys">
    Go to Settings → API Keys in your dashboard
  </Step>

  <Step title="Create New Key">
    Click "Create API Key" and give it a descriptive name
  </Step>

  <Step title="Copy Your Key">
    Copy your API key and store it securely
  </Step>
</Steps>

<Warning>
  Keep your API key secret! Never commit it to version control or expose it in client-side code.
</Warning>

## Choose Your SDK

<Tabs>
  <Tab title="JavaScript/TypeScript">
    ### Installation

    ```bash theme={null}
    npm install 60db
    ```

    ### Basic Usage

    ```typescript theme={null}
    import { SixtyDBClient } from '60db';

    // Initialize the client
    const client = new SixtyDBClient('your-api-key');

    // Text to Speech
    const audio = await client.textToSpeech({
      text: 'Hello, world!',
      voice_id: 'default-voice'
    });

    // Get all voices
    const voices = await client.getVoices();
    console.log(voices);
    ```
  </Tab>

  <Tab title="Python">
    ### Installation

    ```bash theme={null}
    pip install 60db
    ```

    ### Basic Usage

    ```python theme={null}
    from sixtydb import SixtyDBClient

    # Initialize the client
    client = SixtyDBClient('your-api-key')

    # Text to Speech
    audio = client.text_to_speech('Hello, world!', voice_id='default-voice')

    # Save audio to file
    with open('output.mp3', 'wb') as f:
        f.write(audio)

    # Get all voices
    voices = client.get_voices()
    print(voices)
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="Explore Features" icon="compass" href="/features/text-to-speech">
    Learn about all available features
  </Card>

  <Card title="API Reference" icon="book" href="/api-reference/introduction">
    Dive into the complete API documentation
  </Card>

  <Card title="Custom Voices" icon="user-voice" href="/features/voices">
    Create your own custom voice profiles
  </Card>

  <Card title="Webhooks" icon="webhook" href="/platform/webhooks">
    Set up webhooks for event notifications
  </Card>
</CardGroup>
