LinkedIn Job Details
Get the full details for a single LinkedIn job listing — title, description, company, location, posted date, remote flag, employment type, experience level, applicant count, salary, and required skills — as JSON. Costs 4 credits.
POST/api/v1/linkedin/job
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/jsonjob_idstringrequiredThe numeric LinkedIn job id from the job listing URL.
Example: 3900000000
include_skillsbooleanInclude the required-skills list on the response.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.job(job_id="3900000000")
print(results)Response
"id": "3900000000",
"title": "Senior Software Engineer",
"url": "https://www.linkedin.com/jobs/view/3900000000",
"description": "We are looking for a senior engineer to join our platform team. You will design and build backend services at scale, mentor other engineers, and partner with product to ship customer-facing features.",
"company": "Microsoft",
"company_url": "https://www.linkedin.com/company/microsoft",
"location": "Redmond, WA",
"posted_at": "2026-06-18",
"is_remote": false,
"employment_type": "Full-time",
"experience_level": "Mid-Senior level",
"applicant_count": 87,
"salary": "$140,000 - $210,000/yr",
},
"response_time": 3390,
"credits_used": 4,
"credits_remaining": 4714
}