LinkedIn Company Jobs API
Scrape LinkedIn Company Jobs data with one API call. List a company's job postings — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema.
Last updated August 2026Maintained by the SocialCrawl team
Returns the jobs a company has posted, each with job id, title, location, hiring company details, posting date, and Easy Apply flag.
Use it for one employer's openings; search/jobs looks across all companies and job returns one posting's full text.
Searching 48 platforms in parallel
What can you do with the Company Jobs API?
The Company Jobs endpoint gives you structured LinkedIn data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/linkedin/company/jobs?company_id=1035"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/linkedin/company/jobs",
params={
'company_id': '1035',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/linkedin/company/jobs?company_id=1035",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| company_id | Yes | LinkedIn numeric company ID (from /v1/linkedin/company). |
| page | No | |
| date_posted | No | |
| experience_level | No | |
| job_type | No | |
| remote | No | |
| easy_apply | No | |
| sort_by | No |
What does the LinkedIn Company Jobs API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "linkedin",
"endpoint": "/v1/linkedin/company/jobs",
"data": {
"items": [
{
"job": {
"id": "4424258357",
"title": "Technical Recruiter (contract)",
"url": "https://www.linkedin.com/jobs/view/4424258357",
"company": {
"id": "1035",
"name": "Microsoft",
"url": "https://www.linkedin.com/company/1035",
"verified": true
},
"location": "Redmond, WA (Remote)",
"listed_at": "2026-06-03T20:16:10.000Z",
"easy_apply": false,
"ext": {
"is_promote": false
}
}
},
{
"job": {
"id": "4365290091",
"title": "Consulting Project Manager - CTJ - Poly",
"url": "https://www.linkedin.com/jobs/view/4365290091",
"company": {
"id": "1035",
"name": "Microsoft",
"url": "https://www.linkedin.com/company/1035",
"verified": true
},
"location": "Annapolis Junction, MD (Hybrid)",
"listed_at": "2026-07-26T14:41:49.000Z",
"easy_apply": false,
"ext": {
"is_promote": false
}
}
}
],
"total": 1660,
"dropped": 0
},
"credits_used": 10,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": "sc.eyJ2IjoyLCJjIjoiMiIsInAiOiJwYWdlIn0",
"has_more": true,
"page_size": 25
}
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the LinkedIn Company Jobs API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 48 platforms covering 10B+ monthly active users.
One schema, every platform
Query 48 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.
See your data before you code
Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I list a company's job postings with an API?
What filters can I apply to LinkedIn company jobs?
How do I paginate through a company's job postings?
How much does the company jobs endpoint cost?
How do I get full detail on a single job posting?
Can I use this to track hiring at target accounts?
Ask AI about SocialCrawl
Ready to scrape LinkedIn Company Jobs data?
Get your API key and start pulling LinkedIn data in under 60 seconds.
