Point it at a company domain and get back the people who work there, filterable by title, with pagination.
| Param | Type | Notes |
|---|---|---|
company_url | string | Company domain |
title | string | Filter by job title |
page | int | Default 1 |
has_email | bool | Only return contacts with a known email |
curl "https://api.fyonta.com/v1/enrich/domain-search?company_url=acme.com&title=Marketing" \
-H "X-API-Key: $FYONTA_KEY"
{
"data": [{ "first_name": "Jane", "last_name": "Doe", "title": "VP Marketing", "company_name": "Acme Corp" }],
"result_count": 1, "page": 1
}