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

# Clay

> Use Huntr enrichment and research inside Clay tables.

Huntr is **API-native** — use it as an HTTP enrichment source in Clay without moving your workflow into another platform.

## When to use Huntr in Clay

| Clay column goal              | Huntr endpoint             |
| ----------------------------- | -------------------------- |
| Account research brief        | `POST /research`           |
| Company list from ICP filters | `POST /company-search`     |
| Find people at a company      | `POST /person-search`      |
| Work email                    | `POST /person-email`       |
| Tech stack                    | `POST /company-tech-stack` |
| Hiring signal                 | `POST /company-jobs`       |

## HTTP API column setup

1. Add an **HTTP API** enrichment column in Clay
2. Set method to `POST`
3. URL: `https://api.tryhuntr.com/{endpoint}` (e.g. `/person-email`)
4. Headers: `x-api-key: {{your_huntr_key}}`
5. Body: JSON with Clay `{{column}}` references

Example body for email finding:

```json theme={null}
{
  "first_name": "{{first_name}}",
  "last_name": "{{last_name}}",
  "company_domain": "{{domain}}"
}
```

## Research columns

For narrative account briefs, call `/research` with a prompt that includes Clay fields:

```json theme={null}
{
  "prompt": "We sell {{your_product}}. Research {{company_name}} ({{domain}}) for buying signals from the last 12 months and practical outreach angles.",
  "tier": "standard"
}
```

Map the `result` field into your table.

<Tip>
  Do not run `/research` on every row for bulk email finding — use `/person-email` per row instead. `/research` is for one-off synthesis.
</Tip>

## Compare to Claygent

Huntr is built as an **intelligence API** (REST + MCP), not a Clay-only agent. You get the same research capabilities in n8n, your product, or Cursor — with per-request pricing and no workspace lock-in.

## Next step

* [Quickstart](/quickstart)
* [Research Agent](/guides/research-agent)
* [Automation platforms](/integrations/automation)
