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

# SendPilot API

> Build powerful integrations with LinkedIn outreach automation

The SendPilot API gives you programmatic access to manage LinkedIn outreach campaigns, leads, and messaging. Build custom integrations, automate workflows, and sync data with your existing tools.

## Quick Start

<CardGroup cols={2}>
  <Card title="API Reference" icon="book" href="/api-reference/introduction">
    Explore all available endpoints
  </Card>

  <Card title="Authentication" icon="key" href="/api-reference/authentication">
    Set up API key authentication
  </Card>

  <Card title="Webhooks" icon="webhook" href="/webhooks/overview">
    Receive real-time event notifications
  </Card>

  <Card title="Use Cases" icon="lightbulb" href="/use-cases/overview">
    Integration guides for Zapier, n8n, Make.com
  </Card>
</CardGroup>

## What You Can Build

<CardGroup cols={3}>
  <Card title="CRM Sync" icon="database">
    Sync leads and campaign data with Salesforce, HubSpot, or your custom CRM
  </Card>

  <Card title="Lead Automation" icon="robot">
    Automatically add leads from forms, events, or external sources
  </Card>

  <Card title="Custom Dashboards" icon="chart-line">
    Build internal analytics and reporting tools
  </Card>
</CardGroup>

## Integrations

Connect SendPilot with your favorite tools:

<CardGroup cols={3}>
  <Card title="Zapier" icon="bolt" href="/use-cases/zapier">
    Connect to 5,000+ apps with no code
  </Card>

  <Card title="n8n" icon="code" href="/use-cases/n8n">
    Self-hosted workflow automation
  </Card>

  <Card title="Make.com" icon="gears" href="/use-cases/make">
    Visual automation for complex workflows
  </Card>
</CardGroup>

## API Capabilities

| Feature                 | Description                                |
| ----------------------- | ------------------------------------------ |
| **Campaign Management** | List, pause, and resume campaigns          |
| **Lead Management**     | Add leads, update status, retrieve details |
| **Inbox Messaging**     | Send messages via LinkedIn                 |
| **Webhooks**            | Real-time notifications for all events     |

## Example Request

```bash theme={null}
curl https://api.sendpilot.ai/v1/campaigns \
  -H "X-API-Key: YOUR_API_KEY"
```

```json theme={null}
{
  "campaigns": [
    {
      "id": "camp_xyz789",
      "name": "Q1 Tech Founders Outreach",
      "status": "started",
      "totalLeads": 150
    }
  ],
  "pagination": {
    "total": 1,
    "page": 1,
    "limit": 20
  }
}
```

## Need Help?

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

  <Card title="Documentation" icon="book-open" href="/api-reference/introduction">
    Browse the full documentation
  </Card>
</CardGroup>
