LinkedIn Job Details
Get full details for a single LinkedIn job listing as JSON - title, description, location, employment type, experience level, benefits, skills, applicant and view counts, salary, and the hiring company. Provide `job_id` or `url`. Costs 30 credits. Listings with no detail record upstream return an unbilled 404.
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_idstringThe job listing id from its LinkedIn URL.
Example: 4415427228
urlstringProvide job_id or url. Full LinkedIn job URL, as an alternative to job_id.
Example: https://www.linkedin.com/jobs/view/4415427228/
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.job(job_id="4415427228")
print(results)Response
"id": "4436813174",
"title": "Vietnamese Voice Actor / Actress | Diễn viên Thu âm, Nói tiếng Việt (AI Trainer)",
"url": "https://www.linkedin.com/jobs/view/4436813174/",
"description": "Về Babel Audio: Babel Audio hợp tác với các công ty công nghệ hàng đầu để thu thập dữ liệu giọng nói chất lượng cao đào tạo các mô hình AI tiên tiến. Chúng tôi làm việc với hàng nghìn người tham gia trên toàn thế giới để...",
"location": "Vietnam",
"employment_type": "Contract",
"experience_level": null,
"job_functions": [],
"benefits": [],
"skills": [],
"is_remote": true,
"is_closed": false,
"expires_at": "2027-01-03 14:36:48",
"posted_at": "2026-07-07 14:36:48",
"applicant_count": 0,
"view_count": 0,
"salary": null,
},
"response_time": 1486,
"credits_used": 30,
"credits_remaining": 970
}