SOLUTIONS

Lead Search

Search across the contacts Fyonta owns outright — filter by industry, seniority tier, region, and a built-in ICP match score. No credits, no per-lookup cost.

Endpoint

GET/v1/leads/search
ParamTypeNotes
industrystringFuzzy match, e.g. IT Services
region_codestringUS state code, e.g. CA
seniority_tierstringComma-separated: C-Suite, VP, Director, Manager, Other
min_quality / min_icpint0–100 score floors
qstringFuzzy match on company name or title
limit / offsetintPagination, limit max 100

Example

curl "https://api.fyonta.com/v1/leads/search?seniority_tier=Director,VP&region_code=CA" \
  -H "X-API-Key: $FYONTA_KEY"

{
  "results": [{ "company_name": "Robert Half", "title": "VP, Talent Acquisition", "seniority_tier": "C-Suite", "icp_match_score": 100 }],
  "count": 1, "has_more": true
}

Use cases

Related