Skip to main content

Get Job Details

GET /get-job-details

Get full details for a specific job posting.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
job_idstringYesLinkedIn job ID

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-job-details?job_id=3812345678' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"job_id": "3812345678",
"title": "Senior Software Engineer",
"company_name": "Tech Company",
"company_linkedin_url": "https://www.linkedin.com/company/techcompany/",
"location": "San Francisco, CA",
"remote_type": "Remote",
"job_type": "Full-time",
"experience_level": "Mid-Senior level",
"posted_at": "2024-01-15T10:30:00Z",
"applicants_count": 150,
"description": "We are looking for a Senior Software Engineer...",
"skills": ["Python", "JavaScript", "AWS"],
"benefits": ["Health Insurance", "401k", "Remote Work"],
"salary_range": "$150,000 - $200,000",
"apply_url": "https://www.linkedin.com/jobs/view/3812345678/apply"
}
}