Get Job Details
GET /get-job-details
Get full details for a specific job posting.
Pricing
1 credit per call.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
job_id | string | Yes | LinkedIn job ID |
Example Request
- cURL
- Python
- Node.js
curl --request GET \
--url 'https://api.infoplug.io/get-job-details?job_id=3812345678' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'
import requests
url = "https://api.infoplug.io/get-job-details"
params = {
"job_id": "3812345678"
}
headers = {
"X-INFOPLUG-API-KEY": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const response = await fetch(
'https://api.infoplug.io/get-job-details?job_id=3812345678',
{
headers: {
'X-INFOPLUG-API-KEY': 'YOUR_API_KEY'
}
}
);
const data = await response.json();
console.log(data);
Example Response
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 404 Not Found
{
"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"
}
}
{
"message": "invalid_parameter",
"parameter": "job_id",
"details": "Job ID is required"
}
{
"message": "unauthorized",
"details": "Invalid or missing API key"
}
{
"message": "not_found",
"details": "Job posting not found or no longer active"
}
Related Endpoints
- Search Jobs - Search for job postings