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

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

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/companies/{company_id}/jobs', 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/companies/{company_id}/jobs",
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/companies/{company_id}/jobs"

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/companies/{company_id}/jobs")
.header("X-API-Key", "<x-api-key>")
.asString();
require 'uri'
require 'net/http'

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

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
{
  "jobs": [
    {}
  ],
  "meta": {}
}
List a company’s public LinkedIn job openings by its numeric company_id (resolve a company name to its id with /geo/suggest using type=company). Returns the same JobCard shape as /jobs/search, paginated in blocks of 25 via start. Credits: 5

Authorization

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

Path Parameters

company_id
string
required
Numeric LinkedIn company id, e.g. 1035 (Microsoft).

Query Parameters

start
integer
default:"0"
Pagination offset — 0, 25, 50, … (page size is 25).
country
string
default:"us"
Country/locale for the request.

Response

jobs
JobCard[]
Result cards — same shape as job search: job_id, title, job_url, company, company_url, company_logo, location, posted_at, posted_relative, is_new, benefits[].
meta
object
result_count, start, has_more.

Example

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

res = requests.get(
    "https://api.scrapebadger.com/v1/linkedin/companies/1035/jobs",
    headers={"X-API-Key": "YOUR_API_KEY"},
)
data = res.json()
Response
{
  "jobs": [
    {
      "job_id": "3809988776",
      "title": "Software Engineer II",
      "job_url": "https://www.linkedin.com/jobs/view/3809988776",
      "company": "Microsoft",
      "company_url": "https://www.linkedin.com/company/microsoft",
      "company_logo": "https://media.licdn.com/dms/image/microsoft-logo.png",
      "location": "Redmond, WA",
      "posted_at": "2026-07-11T09:20:00Z",
      "posted_relative": "2 days ago",
      "is_new": true,
      "benefits": ["401(k)", "Medical insurance", "Vision insurance"]
    }
  ],
  "meta": {
    "result_count": 25,
    "start": 0,
    "has_more": true
  }
}