People/Search People
GET
/api/profile/searchSearch People
Search for LinkedIn profiles with various filters including company, location, industry, and more.
1 credit
Authentication required
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| keywords | string | Required | Search keywords (e.g., 'software engineer') |
| start | integer | Optional | Pagination offset (0-indexed)Default: 0 |
| count | integer | Optional | Results per page (max 50)Default: 10 |
| current_company | string | Optional | Company ID or comma-separated IDs |
| past_company | string | Optional | Past company ID or comma-separated IDs |
| school | string | Optional | School ID or comma-separated IDs |
| location | string | Optional | Geo URN ID (e.g., '103644278' for USA) |
| industry | string | Optional | Industry ID or comma-separated IDs |
| network | string | Optional | Network filter: F=1st, S=2nd, O=3rd+ (comma-separated) |
| title | string | Optional | Job title keywords |
| first_name | string | Optional | First name filter |
| last_name | string | Optional | Last 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"