Employees API

Our Employees API is a robust tool designed to seamlessly extract comprehensive information about the workforce within a company.

Here is the list of default parameters you can use with this API:

Parameters

api_key required

This is your API key.

domain required

Type: String

The domain of the company for which you need employees.

city

Type: String The city from which you need the employees.

position

Type: String The job title you wish to target for the employees.

size

Type: Number(Integer) [1,2,3....40] Default: 1 (Enter 1 for 10 results per page, 2 for 20 results per page, etc .) Each page returns 10 employees of a company by default. However, if you wish to obtain more data, you can implement this size parameter. Note: It can return a maximum of 400 results only.

page

Type: Number(Integer) [1,2,3....] Default: 1 (Enter 1 for 1st-page results, 2 for 2nd, etc .) Each page returns 10 employees of a company. However, if you wish to obtain more data, you can implement this size parameter with the page parameter.

Note:

  1. Each Employee API request will cost you 10 request credits.

  2. Initiate your request from the first page before retrieving data from the next pages.

API Example:

cURL "https://api.enrichmentapi.io/employees?api_key=APIKEY&domain=ibm.com"

API Response

{
    "employees_data": [
        {
            "firstName": "Barry",
            "lastName": "Baker",
            "fullName": "Barry Baker",
            "uid": 1,
            "linkedinUrl": "https://www.linkedin.com/in/barrymbaker",
            "company_name": "ibm",
            "email": "https://api.enrichmentapi.io/find_email?id=1&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Bryan",
            "lastName": "Casey",
            "fullName": "Bryan Casey",
            "uid": 2,
            "jobTitle": "Director, Digital Marketing",
            "linkedinUrl": "https://www.linkedin.com/in/bryan-f-casey",
            "company_name": "ibm",
            "city": "new jersey, united states",
            "country": "united states",
            "email": "https://api.enrichmentapi.io/find_email?id=2&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Kate",
            "lastName": "Woolley",
            "fullName": "Kate Woolley",
            "uid": 3,
            "jobTitle": "General Manager,  Ecosystem",
            "linkedinUrl": "https://www.linkedin.com/in/katepwoolley",
            "company_name": "ibm",
            "city": "new york",
            "country": "United States",
            "email": "https://api.enrichmentapi.io/find_email?id=3&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Katrina",
            "lastName": "Alcorn",
            "fullName": "Katrina Alcorn",
            "uid": 4,
            "jobTitle": "General Manager, Design",
            "linkedinUrl": "https://www.linkedin.com/in/katrinaalcorn",
            "company_name": "ibm",
            "city": "armonk, new york",
            "country": "United States",
            "email": "https://api.enrichmentapi.io/find_email?id=4&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Joanne",
            "lastName": "Wright",
            "fullName": "Joanne Wright",
            "uid": 5,
            "jobTitle": "Senior Vice President, Transformation and",
            "linkedinUrl": "https://www.linkedin.com/in/joanne-wright4",
            "company_name": "ibm",
            "city": "armonk, new york",
            "country": "United States",
            "email": "https://api.enrichmentapi.io/find_email?id=5&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "John",
            "lastName": "Abbott",
            "fullName": "John Abbott",
            "uid": 6,
            "jobTitle": "Integration Brand Lead Client Engineering",
            "linkedinUrl": "https://www.linkedin.com/in/jabbottparkcity",
            "company_name": "ibm",
            "city": "park city, utah",
            "country": "United States",
            "email": "https://api.enrichmentapi.io/find_email?id=6&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Sam",
            "lastName": "Ladah",
            "fullName": "Sam Ladah",
            "uid": 7,
            "jobTitle": "HR Vice President,  Global Markets",
            "linkedinUrl": "https://www.linkedin.com/in/sam-ladah-2570801",
            "company_name": "ibm",
            "city": "new york city metropolitan area",
            "email": "https://api.enrichmentapi.io/find_email?id=7&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Adam",
            "lastName": "Cutler",
            "fullName": "Adam Cutler",
            "uid": 8,
            "linkedinUrl": "https://www.linkedin.com/in/adamcutler",
            "company_name": "ibm",
            "city": "austin, texas",
            "country": "United States",
            "email": "https://api.enrichmentapi.io/find_email?id=8&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Vijay",
            "lastName": "Vijayasankar",
            "fullName": "Vijay Vijayasankar",
            "uid": 9,
            "linkedinUrl": "https://www.linkedin.com/in/vijayasankarv",
            "company_name": "ibm",
            "email": "https://api.enrichmentapi.io/find_email?id=9&domain=ibm.com&api_key=APIKEY"
        },
        {
            "firstName": "Daniel",
            "lastName": "Hernandez",
            "fullName": "Daniel Hernandez",
            "uid": 10,
            "linkedinUrl": "https://www.linkedin.com/in/danielghernandez",
            "company_name": "ibm",
            "email": "https://api.enrichmentapi.io/find_email?id=10&domain=ibm.com&api_key=APIKEY"
        }
    ]
}

Last updated