POST
/
v1
/
people
/
employee-finder
Employee Finder
curl --request POST \
  --url https://api.leadmagic.io/v1/people/employee-finder \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "company_domain": "gong.io",
  "company_name": "gong",
  "limit": 20
}'
{
  "message": "Data found for the given comapny.",
  "total_count": 402,
  "returned_count": 20,
  "credits_consumed": 1,
  "data": [
    {
      "first_name": "Suzanne",
      "last_name": "Quentin",
      "title": "Director, Talent Development",
      "website": "http://www.gong.io",
      "company_name": "Gong"
    },
    {
      "first_name": "Brea",
      "last_name": "Porter",
      "title": "Senior Product Manager",
      "website": "http://www.gong.io",
      "company_name": "Gong"
    },
    {
      "first_name": "Damian",
      "last_name": "Cowell",
      "title": "Sr Director of Product Management",
      "website": "http://www.gong.io",
      "company_name": "Gong"
    }
  ]
}
You must provide either the Company Domain Name or the Company Name in your POST request.
Charges 0.05 credits for every employee returned.
Rate Limit: 500 requests per minute.
Contact our support team if you need to increase your requests per minute.

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200 - application/json

Successful response with employee details

The response is of type object.