Same inputs as Email Finder — LinkedIn URL, or company domain plus name — returns a direct or mobile number when one is on file.
| Param | Type | Notes |
|---|---|---|
linkedin_url | string | Provide this alone, or the three fields below |
company_url | string | Company domain |
first_name / last_name | string | Required together with company_url if no LinkedIn URL |
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
}