100 free credits — no credit card required.Start building
Logo
100 free credits — no credit card required

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

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
LinkedIn API

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

ParameterRequiredDescription
queryYesSearch keyword.
pageNo
date_postedNo
experience_levelNo
job_typeNo
remoteNo
easy_applyNo
sort_byNo
companyNo
geocodeNo
industry_idsNo
Example Response

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.

API Details

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

Why SocialCrawl

Why use SocialCrawl for LinkedIn Search Jobs data?

We handle the complexity of LinkedIn data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

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()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 48 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I search LinkedIn jobs with an API?
Send a GET request to /v1/linkedin/search/jobs with a query keyword. SocialCrawl returns paginated job listings with title, company, location, and posted date. No LinkedIn login or Jobs API partner access required.
What filters does the LinkedIn job search API support?
Beyond query, filter by company, geocode, industry_ids, date_posted, experience_level, job_type, remote, and easy_apply. Use sort_by to order results and page to paginate deeper into the listings.
How much does the LinkedIn Jobs API cost?
Each page of job results costs 10 credits on the premium tier, no matter how many listings return in that page. Every new account gets 100 free credits with no credit card, enough for 10 searches.
Can I filter LinkedIn jobs by remote and experience level?
Yes. Set remote to surface remote roles and experience_level to match seniority. Combine with job_type and easy_apply to build a focused feed for a job board, ATS, or market-research pipeline.
How do I paginate LinkedIn job search results?
Add the page query parameter (integer) and increment it to load the next set of jobs. Start at page 1 and continue until the response returns an empty list, which marks the end of matches.
Where does the geocode filter come from?
The geocode filter takes a LinkedIn location id. Resolve a place name like San Francisco to its id with the /v1/linkedin/search/location endpoint first, then pass that id into geocode here.

Ask AI about SocialCrawl

Ready to scrape LinkedIn Search Jobs data?

Get your API key and start pulling LinkedIn data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown