Company Employee Finder API
One POST with a company name, an employee list back as JSON. 0.5 credits per employee returned
Request
Every LinkFinder lookup goes to the same endpoint, POST https://api.linkfinderai.com. The type field selects the lookup; input_data carries the input as a plain string.
| Field | Value for this lookup | |
|---|---|---|
type | required | company_name_to_employees |
input_data | required | Company Name, e.g. Tesla |
department | optional | Only employees in this department. |
seniority | optional | Only employees at this seniority. |
employee_count | optional | Cap on how many employees to return. Billed 0.5 credits each. |
Authenticate with your API key as a Bearer token. Keep it server-side; never ship it in a browser or a mobile app.
Response
A successful call returns {"status": "success", "result": ...}. For this lookup the result carries First Name, Last Name, Job Title, Email, Phone, LinkedIn URL, Company, City and Country. When nothing is found, result is null; the call is still charged, so cache your inputs and do not retry a null.
This lookup always runs asynchronously. The first response is 202 with a job_id and a poll_url; poll GET /status/{job_id} until status is done.
Credits and errors
0.5 credits per employee returned. 401 means the key is missing or wrong, 402 means the account is out of credits, 422 means the type or the input is malformed, and 429 means you are being rate limited; back off and retry.
Filter by department and seniority, and cap how many employees to return per company. Billing is per employee returned, so the cap is also the budget.
Use it from an automation tool
The same request works from an HTTP node: see n8n, or the integrations page for Make, Zapier, Clay and the MCP server. Bulk without code: upload a CSV.
First call in under five minutes
Free credits on signup, no card. Copy the cURL above, paste your key, and read the JSON.
Get an API key