People/Search People
GET/api/profile/search

Search People

Search for LinkedIn profiles with various filters including company, location, industry, and more.

1 credit
Authentication required
Parameters
NameTypeRequiredDescription
keywordsstringRequiredSearch keywords (e.g., 'software engineer')
startintegerOptionalPagination offset (0-indexed)Default: 0
countintegerOptionalResults per page (max 50)Default: 10
current_companystringOptionalCompany ID or comma-separated IDs
past_companystringOptionalPast company ID or comma-separated IDs
schoolstringOptionalSchool ID or comma-separated IDs
locationstringOptionalGeo URN ID (e.g., '103644278' for USA)
industrystringOptionalIndustry ID or comma-separated IDs
networkstringOptionalNetwork filter: F=1st, S=2nd, O=3rd+ (comma-separated)
titlestringOptionalJob title keywords
first_namestringOptionalFirst name filter
last_namestringOptionalLast name filter
Response Example
{
  "results": [
    {
      "profile_urn": "ACoAABc123...",
      "public_identifier": "john-doe-123",
      "name": "John Doe",
      "headline": "Senior Software Engineer at Google",
      "location": "San Francisco, CA",
      "profile_url": "https://www.linkedin.com/in/john-doe-123/",
      "is_headless": false,
      "distance": "DISTANCE_2"
    }
  ],
  "pagination": {
    "total_results": 15000000,
    "start": 0,
    "count": 10,
    "has_more": true
  }
}
Try it out

No API keys found. Create a key to use the playground.

Search keywords (e.g., 'software engineer')

Pagination offset (0-indexed)

Results per page (max 50)

Company ID or comma-separated IDs

Past company ID or comma-separated IDs

School ID or comma-separated IDs

Geo URN ID (e.g., '103644278' for USA)

Industry ID or comma-separated IDs

Network filter: F=1st, S=2nd, O=3rd+ (comma-separated)

Job title keywords

First name filter

Last name filter

Code Examples
curl -X GET "https://api.heyscraper.io/api/profile/search?keywords=%3Ckeywords%3E" \
  -H "X-API-Key: hs_live_your_api_key"