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

# Quickstart

> Make your first API call in 5 minutes

## Get started in three steps

### Step 1: Get Your API Key

<Card title="Join the Waitlist" icon="key" href="https://tally.so/r/vGDY4d" horizontal>
  Sign up to get early API access. We're onboarding new users every week.
</Card>

### Step 2: Get Your Sales Navigator URL

<AccordionGroup>
  <Accordion icon="search" title="Set up your search">
    1. Go to [LinkedIn Sales Navigator](https://www.linkedin.com/sales)
    2. Set up your search filters (title, location, company size, etc.)
    3. Copy the full URL from your browser's address bar

    <Tip>The URL should start with `https://www.linkedin.com/sales/search/people?`</Tip>
  </Accordion>
</AccordionGroup>

### Step 3: Make Your First API Call

<CodeGroup>
  ```bash Start Enrich Job theme={null}
  curl -X POST https://api.cheetah-sales.dev/api/enrich \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "salesNavUrl": "YOUR_SALES_NAV_URL",
      "sender": {
        "name": "Your Name",
        "company": "Your Company",
        "valueProp": "What you offer"
      }
    }'
  ```

  ```json Response theme={null}
  {
    "success": true,
    "jobId": "run_abc123xyz",
    "listId": "550e8400-e29b-41d4-a716-446655440000",
    "status": "pending"
  }
  ```
</CodeGroup>

### Step 4: Get Your Enriched Leads

<CodeGroup>
  ```bash Check Status theme={null}
  curl https://api.cheetah-sales.dev/api/enrich/run_abc123xyz \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```bash Get Leads (when complete) theme={null}
  curl https://api.cheetah-sales.dev/api/enrich/run_abc123xyz/leads \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```json Lead Response theme={null}
  {
    "success": true,
    "totalLeads": 25,
    "leads": [
      {
        "name": "Jane Doe",
        "title": "VP of Engineering",
        "company": "TechCorp",
        "email": "jane.doe@techcorp.com",
        "phone": "+1-555-123-4567",
        "linkedinUrl": "https://linkedin.com/in/janedoe"
      }
    ]
  }
  ```
</CodeGroup>

## Next steps

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

  <Card title="Start Enrich" icon="rocket" href="/api-reference/enrich/create">
    POST /api/enrich details
  </Card>
</CardGroup>
