SOLUTIONS

Phone Finder

Same inputs as Email Finder — LinkedIn URL, or company domain plus name — returns a direct or mobile number when one is on file.

Endpoint

GET/v1/enrich/phone-search
ParamTypeNotes
linkedin_urlstringProvide this alone, or the three fields below
company_urlstringCompany domain
first_name / last_namestringRequired together with company_url if no LinkedIn URL

Example

curl "https://api.fyonta.com/v1/enrich/phone-search?company_url=acme.com&first_name=Jane&last_name=Doe" \
  -H "X-API-Key: $FYONTA_KEY"

{
  "data": { "first_name": "Jane", "last_name": "Doe", "employee_phone": "+1-555-0123", "company_name": "Acme Corp" },
  "result_count": 1
}

Use cases

Related