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

# Find decision makers

`POST /api/v1/contacts/lookup/decision-makers`

Authentication: API key.

Find decision makers at a company using LeadMCP database search. Matches contacts with seniority `C-Team`, `VP`, or `Director`, or any job title containing `Head` (e.g. Head of Growth, Department Head). Provide exactly one of `domain`, `company_name`, or `linkedin_company_url`. Always returns contacts with `VALID` emails. `require_email` is accepted but ignored. Up to 5000 records per request (default 5000); use `offset` for the next page. 1 credit per record returned; 0 if none. The response echoes the applied `role_filter`.

### Body parameters

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `domain` | string | no |  |  |
| `limit` | number | no |  |  |
| `offset` | number | no |  |  |

### Example request

```bash
curl -sS -X POST "https://leadmcp.ai/api/v1/contacts/lookup/decision-makers" \
  -H "X-API-Key: lb_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain":"acme.com","limit":10}'
```
