Skip to main content
POST
/
employee-finder
Employee Finder
curl --request POST \
  --url https://api.leadmagic.io/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
company_domain
string
default:gong.io

Provide the Company Domain Name (Optional)

company_name
string
default:gong

Provide the Company Name (Optional)

limit
integer
default:20

Number of results needed. (Default is 20)

Response

200 - application/json

Successful response with employee details

message
string
Example:

"Data found for the given comapny."

total_count
integer
Example:

402

returned_count
integer
Example:

20

credits_consumed
integer
Example:

1

data
object[]
Example:
[
{
"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"
}
]
I