Employee Finder API

Find employees at any company by name. Returns a list of matching people — each with a name, title, description, and LinkedIn profile — in structured JSON.

Endpoint: https://api.enrichmentapi.io/employee_finder

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • company Required
    The company to find employees at (e.g. "Amazon").
  • location Optional
    Optional. Narrow results to a location (e.g. "United States").
  • domain Optional
    Optional. The company domain to disambiguate the match (e.g. "amazon.com").
  • filters Optional
    Optional. Additional filters such as role or function (e.g. "engineering").

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/employee_finder" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "company=Amazon"
API Response
{
  "success": true,
  "company": "Amazon",
  "people": [
    {
      "linkedin_url": "https://www.linkedin.com/in/martynmallick",
      "slug": "martynmallick",
      "name": "Martyn Mallick",
      "title": "VP of Corporate Partnerships and BD at Amazon",
      "description": "VP of Corporate Partnerships and BD at Amazon · I'm a technology executive with 20+ years experience in building ecosystems, launching products, ..."
    },
    {
      "linkedin_url": "https://www.linkedin.com/in/jeffbarr",
      "slug": "jeffbarr",
      "name": "Jeff Barr",
      "title": "Vice President & Chief Evangelist at Amazon Web Services",
      "description": "As the Chief Evangelist for the Amazon Web Services, I get to tell the AWS story to audiences all over the world. I talk, I record videos, ..."
    }
  ]
}