> ## 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.

# Use Cases

> Integrate SendPilot with your favorite automation tools

SendPilot's API and webhooks enable powerful integrations with automation platforms. Build custom workflows that connect your LinkedIn outreach with your CRM, marketing tools, and business processes.

## Popular Integrations

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

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

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

## Common Automation Workflows

### Lead Enrichment

When a new lead is added to SendPilot, automatically:

* Enrich lead data from Clearbit or Apollo
* Add the lead to your CRM (Salesforce, HubSpot, Pipedrive)
* Notify your sales team on Slack

### Reply Handling

When a lead replies to your message:

* Create a task in your CRM
* Send a Slack notification to the assigned rep
* Update lead status in your database

### Campaign Management

Based on external triggers:

* Pause campaigns when daily goals are met
* Add leads from form submissions
* Sync lead statuses with your CRM

### Analytics & Reporting

Track outreach performance:

* Log all events to Google Sheets or Airtable
* Send daily digest to Slack
* Update dashboards in real-time

## Building Your Integration

### Step 1: Get Your API Key

1. Log in to SendPilot dashboard
2. Navigate to **Integrations** → **API Keys**
3. Click **Create API Key**
4. Copy your API key securely

### Step 2: Set Up Webhooks

1. Go to **Integrations** → **Webhooks**
2. Add your automation platform's webhook URL
3. Select the events you want to receive

### Step 3: Build Your Workflow

Use the guides below to set up your integration:

* [Zapier Integration Guide](/use-cases/zapier)
* [n8n Integration Guide](/use-cases/n8n)
* [Make.com Integration Guide](/use-cases/make)

## API Endpoints for Automation

| Use Case                | Endpoint                     | Method  |
| ----------------------- | ---------------------------- | ------- |
| Add leads from form     | `POST /v1/leads`             | API     |
| Sync lead status to CRM | `PATCH /v1/leads/:id/status` | API     |
| Pause campaign on goal  | `PATCH /v1/campaigns/:id`    | API     |
| Track replies           | `message.received`           | Webhook |
| Track connections       | `connection.accepted`        | Webhook |

## Need Help?

<CardGroup cols={2}>
  <Card title="API Reference" icon="book" href="/api-reference/introduction">
    Complete API documentation
  </Card>

  <Card title="Webhook Events" icon="webhook" href="/webhooks/overview">
    All available webhook events
  </Card>
</CardGroup>
