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

# n8n, Make & Zapier

> Call Huntr from no-code automation workflows.

Huntr works anywhere you can send an HTTP `POST` with JSON and an `x-api-key` header.

## Common pattern

1. **Trigger** — new row, form submit, CRM stage change
2. **HTTP Request** — call a Huntr endpoint
3. **Map response** — push fields to CRM, Slack, or spreadsheet

## n8n

Use the **HTTP Request** node:

| Setting        | Value                                                 |
| -------------- | ----------------------------------------------------- |
| Method         | `POST`                                                |
| URL            | `https://api.tryhuntr.com/research` (or any endpoint) |
| Authentication | Header `x-api-key`                                    |
| Body           | JSON                                                  |

For long research, add `callback_url` pointing to an n8n webhook trigger, or poll `GET /research/{request_id}/status`.

## Make (Integromat)

Use the **HTTP** module with the same URL, headers, and JSON body. Map output fields from the response JSON.

## Zapier

Use **Webhooks by Zapier** → Custom Request, or a code step with `fetch`.

## Suggested workflows

| Workflow                    | Endpoints                                                  |
| --------------------------- | ---------------------------------------------------------- |
| New account in CRM → enrich | `company-linkedin` → `company-tech-stack` → `company-jobs` |
| ICP list build weekly       | `company-search` with pagination loop                      |
| Alert on hiring             | `company-jobs` on watchlist domains                        |
| Pre-call brief              | `research` tier `standard` or `deep`                       |

## Rate limits

5 requests/second per API key. Add delay nodes when fanning out to many rows.

See [Rate limits](/reference/rate-limits).

## Next step

* [Clay integration](/integrations/clay)
* [Huntr MCP](/build-with-ai/huntr-mcp) — for agent-native workflows instead
* [API Reference](/api-reference)
