Skip to main content
GET
/
company
/
employees
Get Company Employees
curl --request GET \
  --url https://api.zilodata.com/api/v1/linkedin/company/employees \
  --header 'Authorization: Bearer <token>'
{
  "employees": [
    {
      "id": "acme:123456",
      "firstName": "John",
      "lastName": "Doe",
      "headline": "Software Engineer at Tech Corp",
      "location": "San Francisco, CA",
      "profileUrl": "https://www.linkedin.com/in/johndoe",
      "connections": 500,
      "experience": [
        {
          "title": "Senior Software Engineer",
          "company": "Tech Corp",
          "startDate": "2020-01-01",
          "endDate": "2023-12-31"
        }
      ]
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

companyId
string
required
limit
integer
default:50
title
string

Filter by job title

Response

200 - application/json

Successful response

employees
object[]
total
integer