Skip to main content
GET
/
companies
/
{company_uid}
/
employees
Get data from captaindata companies employees
curl --request GET \
  --url https://api.captaindata.com/v1/companies/{company_uid}/employees \
  --header 'X-API-Key: <api-key>'
[
  {
    "uid": "<string>",
    "full_name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "company_name": "<string>",
    "job_title": "<string>",
    "headline": "<string>",
    "location": "<string>",
    "profile_image_url": "<string>",
    "li_profile_url": "<string>",
    "li_profile_id": 123,
    "sn_company_id": 123,
    "tenure_start": "<string>",
    "tenure_end": "<string>",
    "tenure_length": "<string>",
    "recently_hired": true,
    "recently_promoted": true
  }
]
This operation costs 1 credit per request + 0.2 credits per result. A full page of 25 results typically consumes 6 credits (1 + 25 × 0.2).
This endpoint requires a valid company UID obtained from the Find Company or Search Companies endpoints.
The company_uid is Captain Data’s unique company identifier, which is compatible with the numerical LinkedIn company page ID (same as Sales Navigator ID). Note that the LinkedIn ID is immutable.
This endpoint allows you to search for the current company’s employees using Sales Navigator compatible filter queries.
Copy the query string from a Sales Navigator people search URL and use it as the query parameter. Example: (keywords%3Aceo)
Not all Sales Navigator filters are compatible. Account-specific filters cannot be used.

Authorizations

X-API-Key
string
header
required

Path Parameters

company_uid
string
required

Query Parameters

cursor
string

Cursor value obtained from the X-Pagination-Next response header of a previous request, used to continue pagination. Cursors expire after 24 hours. If a cursor has expired or is invalid, pagination must be restarted from the beginning.

page_size
integer
default:10

Maximum number of results per page (read-only; defined by the endpoint, actual count may be lower in some cases like throttling or internal limits).

Required range: 10 <= x <= 10
query
string

A Sales Navigator People search compliant query param. Please copy the entire value of the query parameter from your LinkedIn Sales Navigator search URL (everything after ?query=) and paste it here.

Example:

"(keywords:\"Software Engineer\")"

Response

Successful response

uid
string
full_name
string
first_name
string
last_name
string
company_name
string
job_title
string
headline
string
location
string
profile_image_url
string<uri>
li_profile_url
string<uri>
li_profile_id
integer
sn_company_id
integer
tenure_start
string
tenure_end
string
tenure_length
string
recently_hired
boolean
recently_promoted
boolean