Skip to main content
GET
/
v1
/
linkedin
/
jobs
/
{job_id}
Get Job
curl --request GET \
  --url https://api.scrapebadger.com/v1/linkedin/jobs/{job_id} \
  --header 'X-API-Key: <x-api-key>'
import requests

url = "https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}"

headers = {"X-API-Key": "<x-api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};

fetch('https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<x-api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}")
.header("X-API-Key", "<x-api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.scrapebadger.com/v1/linkedin/jobs/{job_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'

response = http.request(request)
puts response.read_body
{
  "job": {
    "job_id": "<string>",
    "title": "<string>",
    "job_url": "<string>",
    "company": "<string>",
    "company_url": "<string>",
    "company_logo": "<string>",
    "location": "<string>",
    "posted_at": "<string>",
    "posted_relative": "<string>",
    "is_new": true,
    "benefits": [
      "<string>"
    ],
    "description_html": "<string>",
    "description_text": "<string>",
    "salary": "<string>",
    "seniority_level": "<string>",
    "employment_type": "<string>",
    "job_functions": [
      "<string>"
    ],
    "industries": [
      "<string>"
    ],
    "applicants": "<string>",
    "applicants_count": 123,
    "apply_url": "<string>"
  }
}
Fetch a single LinkedIn job’s complete detail by its numeric job_id (from /jobs/search). Extends the JobCard with the full description (HTML + text), salary, seniority, employment type, job functions, industries, applicant counts and the apply URL. Credits: 5

Authorization

X-API-Key
string
required
Your ScrapeBadger API key.

Path Parameters

job_id
string
required
Numeric LinkedIn job id, e.g. 3801234567.

Query Parameters

country
string
default:"us"
Country/locale for the request.

Response

job
object
The full JobDetail. Includes every JobCard field plus:

Example

curl "https://api.scrapebadger.com/v1/linkedin/jobs/3801234567" \
  -H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
  "https://api.scrapebadger.com/v1/linkedin/jobs/3801234567",
  { headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { job } = await res.json();
import requests

res = requests.get(
    "https://api.scrapebadger.com/v1/linkedin/jobs/3801234567",
    headers={"X-API-Key": "YOUR_API_KEY"},
)
job = res.json()["job"]
Response
{
  "job": {
    "job_id": "3801234567",
    "title": "Senior Software Engineer",
    "job_url": "https://www.linkedin.com/jobs/view/3801234567",
    "company": "Acme Corp",
    "company_url": "https://www.linkedin.com/company/acme-corp",
    "company_logo": "https://media.licdn.com/dms/image/acme-logo.png",
    "location": "New York, NY",
    "posted_at": "2026-07-09T14:02:00Z",
    "posted_relative": "4 days ago",
    "is_new": false,
    "benefits": ["401(k)", "Medical insurance"],
    "description_html": "<p>We are looking for a Senior Software Engineer to join our platform team…</p>",
    "description_text": "We are looking for a Senior Software Engineer to join our platform team…",
    "salary": "$160,000 - $210,000",
    "seniority_level": "Mid-Senior level",
    "employment_type": "Full-time",
    "job_functions": ["Engineering", "Information Technology"],
    "industries": ["Software Development"],
    "applicants": "Over 200 applicants",
    "applicants_count": 214,
    "apply_url": "https://www.linkedin.com/jobs/view/3801234567/apply"
  }
}