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

# Leavo API Documentation

> Complete reference for Leavo REST API integration

## Welcome to Leavo API

The Leavo API allows you to integrate your applications with our lead management and AI processing platform.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/en/quickstart">
    Start using the API in under 5 minutes
  </Card>

  <Card title="Authentication" icon="key" href="/en/authentication">
    Learn how to authenticate your requests
  </Card>

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

  <Card title="AI Processing" icon="brain" href="/en/ai-processing">
    Process messages with AI
  </Card>
</CardGroup>

## Quick Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.leavo.ai/backend/leads" \
    -H "Authorization: Bearer your_api_key_here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.leavo.ai/backend/leads', {
    headers: {
      'Authorization': 'Bearer your_api_key_here'
    }
  });

  const leads = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.leavo.ai/backend/leads',
      headers={'Authorization': 'Bearer your_api_key_here'}
  )

  print(response.json())
  ```
</CodeGroup>

## Resources

<CardGroup cols={2}>
  <Card title="Support" icon="envelope" href="mailto:suporte@leavo.ai">
    Contact our support team
  </Card>

  <Card title="API Status" icon="signal" href="https://status.leavo.ai">
    Check API availability
  </Card>
</CardGroup>
