v3

latestOpenAPI 3.1.02026-07-318648277.6 KB
People Enrichment

Employee Finder

Find employees at a company. Returns a list of employees with their profiles, titles, and locations. Costs 0.05 credits per employee returned — free when no employees are found.

post/v1/people/employee-finder

Request body

company_domainstring

Company website domain (preferred — more accurate than company_name)

company_namestring

Company name. Use if domain is not available.

limitinteger

Maximum number of employees to return

Response

Successful response with employee list

total_countinteger

Total employees found (may exceed returned count when limit is set)

credits_consumednumber

Credits used (0.05 per employee returned)

message'Employees found.' | 'No employees found for this company.'

Possible success messages for employee finder

Example response

{
  "employees": [
    {
      "first_name": "Alex",
      "last_name": "Rivera",
      "full_name": "Alex Rivera",
      "profile_url": "example.com/in/alex-rivera",
      "job_title": "VP of Sales",
      "location": "San Francisco, CA"
    }
  ],
  "total_count": 150,
  "credits_consumed": 0.5
}