Facebook Pixel
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/people

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.

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

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID to use for the search. If not provided, uses the default account.
keywordsstringNoSearch keywords for name, title, company, or skills
countnumberNoNumber of results to return per page
startnumberNoPagination offset (0-indexed)
filtersobjectNoOptional 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

StatusDescription
200People retrieved successfully