ApiUncategorized
Search LinkedIn people
Search for LinkedIn members/professionals with extensive filtering options. Ideal for recruiting, sales prospecting, and networking. Filter by name, job title, company, location, connection degree, and more.
POST
/search/peopleSearch LinkedIn people
Search for LinkedIn members/professionals with extensive filtering options. Ideal for recruiting, sales prospecting, and networking. Filter by name, job title, company, location, connection degree, and more.
Authentication requiredSearch
Code Examples
curl -X POST '/linkedin/search/people' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"accountId":"string","keywords":"","count":25,"start":0,"filters":{"firstName":"string","lastName":"string","title":"string","company":"string","school":"string","locationId":"string","geoUrn":"string","industry":["string"],"connectionDegree":["string"],"currentCompanyIds":["string"],"pastCompanyIds":["string"],"profileLanguage":["string"],"serviceCategories":["string"],"openToWork":false}}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID to use for the search. If not provided, uses the default account. |
keywords | string | No | Search keywords for name, title, company, or skills |
count | number | No | Number of results to return per page |
start | number | No | Pagination offset (0-indexed) |
filters | object | No | Optional filters to narrow down search results |
Example
{
"accountId": "string",
"keywords": "",
"count": 25,
"start": 0,
"filters": {
"firstName": "string",
"lastName": "string",
"title": "string",
"company": "string",
"school": "string",
"locationId": "string",
"geoUrn": "string",
"industry": [
"string"
],
"connectionDegree": [
"string"
],
"currentCompanyIds": [
"string"
],
"pastCompanyIds": [
"string"
],
"profileLanguage": [
"string"
],
"serviceCategories": [
"string"
],
"openToWork": false
}
}Responses
| Status | Description |
|---|---|
| 200 | People retrieved successfully |
