LinkedIn People Search
Search LinkedIn for people by name, job title, company, or school, optionally filtered by location — returning name, headline, location, status flags, profile url, and avatar — with pagination, as JSON. Provide at least one of search, title, company, or school. Costs 4 credits.
POST/api/v1/linkedin/search/people
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonsearchstringName to search for. Provide at least one of search, title, company, or school.
Example: john
titlestringJob title filter.
Example: engineer
companystringCompany filter.
schoolstringSchool filter.
locationstringA geo name or id to filter by.
cursorstringPagination cursor (page number) from a previous response. Keep passing it while has_more is true.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.search_people(title="software engineer", company="Stripe")
print(results)Response
"page": 1,
"total": 8420,
"has_more": true
},
"response_time": 3610,
"credits_used": 4,
"credits_remaining": 4726
}