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

# Introduction

> Programmatic access to your Clustr referral network

The Clustr API lets you import contacts, search referral opportunities, and manage target accounts programmatically.

## Base URL

```
https://api.clustr-ai.com/api/public
```

## How it works

1. **Import contacts** - Send LinkedIn URLs via the API. Clustr processes them asynchronously and discovers referral opportunities.
2. **Get results** - Receive results via webhook, email, or query them directly via the search endpoints.
3. **Prioritize with target accounts** - Mark companies as target accounts to flag opportunities at those companies.

## Quick start

```bash theme={null}
curl -X POST https://api.clustr-ai.com/api/public/network/import/connectors \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "connectors": [
      { "linkedin_url": "https://www.linkedin.com/in/john-doe" }
    ],
    "webhook_url": "https://your-webhook.com/results"
  }'
```

<Card title="Get your API key" icon="key" href="https://app.clustr-ai.com/api">
  Create and manage API keys from the Clustr dashboard.
</Card>
