LinkedIn Job Search
Search LinkedIn job listings by keyword and optional location as JSON - title, company, location, posted time, workplace type and salary. 25 per page. Costs 10 credits per page.
POST/api/v1/linkedin/search/jobs
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/jsonsearchstringrequiredKeyword to search for. Use a company name to approximate a per-company job listing.
Example: software engineer
locationstringGeographic filter. Omit to search everywhere.
Example: United States
cursorstringOpaque cursor from a previous response's next_cursor, to fetch the following page.
Example: eyJzdGFydCI6MjV9
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.search_jobs("software engineer", location="United States")
print(results)Response
"count": 25,
"has_more": false
},
"response_time": 8063,
"credits_used": 10,
"credits_remaining": 990
}