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>",
    "headline": "<string>",
    "location": "<string>",
    "li_profile_url": "<string>",
    "li_profile_id": 123,
    "job_title": "<string>",
    "company_name": "<string>",
    "current_company": "<string>",
    "li_profile_image_url": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "current_title": "<string>",
    "li_profile_handle": "<string>",
    "li_company_id": "<string>",
    "li_company_url": "<string>"
  }
]
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.
Currently, this endpoint does not support filtering parameters, but filtering capabilities will be added in a future update.

Authorizations

X-API-Key
string
header
required

Query Parameters

page
integer
default:1

Page index for manual pagination, starting at 1; increase sequentially (page=1, page=2, etc.) until the response returns an empty data array.

page_size
integer
default:10

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

Required range: 10 <= x <= 10

Response

Successful response

uid
string
full_name
string
headline
string
location
string
li_profile_url
string<uri>
li_profile_id
integer
job_title
string
company_name
string
current_company
string
li_profile_image_url
string<uri>
first_name
string
last_name
string
current_title
string
li_profile_handle
string
li_company_id
string
li_company_url
string<uri>