Skip to main content
GET
/
people
/
search
Get data from captaindata people search
curl --request GET \
  --url https://api.captaindata.com/v1/people/search \
  --header 'X-API-Key: <api-key>'
[
  {
    "uid": "<string>",
    "full_name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "job_title": "<string>",
    "company_name": "<string>",
    "headline": "<string>",
    "location": "<string>",
    "li_profile_id": 123,
    "li_profile_url": "<string>",
    "li_profile_image_url": "<string>",
    "li_company_id": "<string>",
    "job_start": "2023-11-07T05:31:56Z",
    "job_end": "2023-11-07T05:31:56Z",
    "job_time_period": "<string>",
    "recently_hired": true,
    "recently_promoted": true
  }
]
This endpoint allows you to search for people using Sales Navigator compatible search queries.Credit Cost: 1 credit per request + 0.2 credits per result. A full page of 25 results typically consumes 6 credits (1 + 25 × 0.2).
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

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:25

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: 25 <= x <= 25
query
string
required

A Sales Navigator Company search compliant query param

Response

Successful response

uid
string
full_name
string
first_name
string
last_name
string
job_title
string
company_name
string
headline
string
location
string
li_profile_id
integer
li_profile_url
string<uri>
li_profile_image_url
string
li_company_id
string
job_start
string<date-time>
job_end
string<date-time>
job_time_period
string
recently_hired
boolean
recently_promoted
boolean