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

# Quickstart

> Get up and running with ClearTalk in minutes - your first AI-powered call is just 3 steps away!

# 🚀 Get Started with ClearTalk in 3 Easy Steps!

**Ready to make your first AI-powered call?** You're about to experience the magic of ClearTalk – the platform that's revolutionizing how businesses communicate. In just a few minutes, you'll be making calls that feel natural, intelligent, and incredibly effective!

<Note>
  **New to AI calling?** No worries! ClearTalk is designed to be
  developer-friendly. Even if you've never worked with AI or voice APIs before,
  you'll be up and running in no time.
</Note>

## ⚡ Step 1: Get Your API Keys

<AccordionGroup>
  <Accordion icon="key" title="🔑 Create Your ClearTalk Account">
    **This is where the magic begins!** 1. Head over to [ClearTalk
    Dashboard](https://dashboard.cleartalk.com) and create your account 2.
    Verify your email (check that spam folder!) 3. Complete the quick onboarding
    wizard 4. Navigate to **API Keys** in your dashboard

    <Tip>
      **Pro tip:** Bookmark your dashboard – you'll be using it a lot! 🎯
    </Tip>
  </Accordion>

  <Accordion icon="shield-halved" title="🔐 Generate Your API Key">
    **Security first, always!** 1. Click **"Generate New API Key"** in your
    dashboard 2. Give it a memorable name like "My First Integration" 3. Copy
    your API key and store it securely 4. Set your webhook URL (we'll help you
    with this!)

    <Warning>
      **Important:** Keep your API key secret! Never commit it to public
      repositories.
    </Warning>
  </Accordion>
</AccordionGroup>

## 🎯 Step 2: Make Your First AI Call

<AccordionGroup>
  <Accordion icon="phone" title="📞 Test the Waters with a Simple Call">
    **Time to hear the magic!** Let's make your first AI-powered call:

    ```bash theme={null}
    curl -X POST "https://api.cleartalk.com/call-contacts/bland-call" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "phone_number": "+1234567890",
        "agent_name": "Sarah",
        "agent_voice": "alloy",
        "script": "Hi! This is Sarah from ClearTalk. I'm calling to introduce you to our amazing AI communication platform. Are you interested in learning more?",
        "max_duration": 60
      }'
    ```

    <Check>**Success!** If you see a response with a `call_id`, your first AI call is queued! 🎉</Check>
  </Accordion>

  <Accordion icon="brain" title="🤖 Try Our AI Analysis">
    **Now let's see the AI in action!** Test our conversation analysis:

    ```bash theme={null}
    curl -X POST "https://api.cleartalk.com/gpt/analyze" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "transcript": "Hi, this is Sarah calling about ClearTalk. The customer said they are very interested in learning more about our AI calling features.",
        "analysis_schema": {
          "outcome": "string",
          "interest_level": "high|medium|low",
          "next_steps": "string"
        }
      }'
    ```

    <Tip>**Amazing, right?** The AI just analyzed the conversation and extracted structured data! 🧠✨</Tip>
  </Accordion>
</AccordionGroup>

## 🎉 Step 3: Build Something Amazing

<Accordion icon="rocket" title="🚀 Create Your First Campaign">
  **Now for the fun part!** Let's create a campaign that will blow your mind:

  1. **Set up a simple campaign:**
     ```bash theme={null}
     curl -X POST "https://api.cleartalk.com/campaigns/save-auto-campaign" \
       -H "Authorization: Bearer YOUR_API_KEY" \
       -H "Content-Type: application/json" \
       -d '{
         "campaign_name": "My First ClearTalk Campaign",
         "script": "Hi! I'm calling about an exciting opportunity. Are you interested in learning more?",
         "target_numbers": ["+1234567890", "+1987654321"],
         "agent_voice": "alloy",
         "max_duration": 120
       }'
     ```

  2. **Monitor your results** in the ClearTalk dashboard

  3. **Watch the AI work its magic** as it handles conversations naturally

  <Check>**Congratulations!** You've just created your first AI-powered calling campaign! 🎊</Check>
</Accordion>

## 🌟 What's Next? The Sky's the Limit!

Now that you've experienced the power of ClearTalk, here's where the real fun begins:

<CardGroup cols={2}>
  <Card title="🤖 Explore AI Features" icon="brain" href="/api-reference/ai/gpt/analyze">
    Dive deep into our AI capabilities and build intelligent conversation
    analysis.
  </Card>

  <Card title="📞 Master Call Management" icon="phone" href="/api-reference/user/call-contacts">
    Learn advanced calling techniques and campaign optimization.
  </Card>

  <Card title="📈 Build Smart Campaigns" icon="chart-line" href="/api-reference/user/campaigns">
    Create sophisticated auto and scheduled campaigns that convert.
  </Card>

  <Card title="🔗 Integrate Everything" icon="link" href="/api-reference/common/zapier">
    Connect ClearTalk with your favorite tools and workflows.
  </Card>

  <Card title="👥 Manage Contacts" icon="users" href="/api-reference/user/contacts">
    Build powerful contact management and CRM integrations.
  </Card>

  <Card title="📊 Analytics & Reporting" icon="chart-bar" href="/api-reference/admin/reports">
    Track performance and optimize your communication strategy.
  </Card>
</CardGroup>

## 🎯 Ready to Build the Future?

<Card title="🌟 Start Building Today" icon="star" href="/api-reference/introduction">
  You've got the basics down! Now explore our complete API reference and start
  building the communication experiences of tomorrow.
</Card>

<Note>
  **Questions?** We're here to help! Check out our [Complete API
  Reference](/api-reference/introduction) for detailed guides, or reach out to
  our support team. We love seeing what amazing things you build with ClearTalk!
  🚀
</Note>
