LinkedIn Search Jobs API
Scrape LinkedIn Search Jobs data with one API call. Search LinkedIn jobs — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema.
Last updated August 2026Maintained by the SocialCrawl team
Returns LinkedIn job postings matching a keyword, each with job id, title, hiring company, location, posting date, and Easy Apply flag.
Use it to search openings across employers with filters like remote, job type, and experience level, then pass an id to job.
Searching 48 platforms in parallel
What can you do with the Search Jobs API?
The Search 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/search/jobs?query=marketing"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/linkedin/search/jobs",
params={
'query': 'marketing',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/linkedin/search/jobs?query=marketing",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Search keyword. |
| page | No | |
| date_posted | No | |
| experience_level | No | |
| job_type | No | |
| remote | No | |
| easy_apply | No | |
| sort_by | No | |
| company | No | |
| geocode | No | |
| industry_ids | No |
What does the LinkedIn Search 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/search/jobs",
"data": {
"items": [
{
"job": {
"id": "4444304617",
"title": "Marketing Manager",
"url": "https://www.linkedin.com/jobs/view/4444304617",
"company": {
"id": "80073065",
"name": "Amazon Music",
"url": "https://www.linkedin.com/company/80073065",
"verified": true
},
"location": "Culver City, CA (Remote)",
"listed_at": "2026-07-24T06:36:34.000Z",
"easy_apply": true,
"ext": {
"is_promote": false
}
}
},
{
"job": {
"id": "4445647047",
"title": "Event Marketing Manager",
"url": "https://www.linkedin.com/jobs/view/4445647047",
"company": {
"id": "96638141",
"name": "talentpluto",
"url": "https://www.linkedin.com/company/96638141",
"verified": false
},
"location": "United States (Remote)",
"listed_at": "2026-07-26T17:46:42.000Z",
"easy_apply": true,
"ext": {
"is_promote": false
}
}
}
],
"total": 81184,
"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 Search 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 search LinkedIn jobs with an API?
What filters does the LinkedIn job search API support?
How much does the LinkedIn Jobs API cost?
Can I filter LinkedIn jobs by remote and experience level?
How do I paginate LinkedIn job search results?
Where does the geocode filter come from?
Ask AI about SocialCrawl
Ready to scrape LinkedIn Search Jobs data?
Get your API key and start pulling LinkedIn data in under 60 seconds.
