LinkedIn Jobs API

LinkedIn Jobs API

Get real-time job posting data without cookies. Filter companies by size, industry, URLs. Cut through noise with LLMs.

AUTOMATIONJOBSAIApify

Returns an array of job postings that satisfy the specified search criteria.

Features

  • Customize searches with specific keywords, functions, titles, and more
  • Filter by hiring company attributes such as size, industry, URLs, and more
  • Uses LLMs to semantically filter unstructured text such as job titles, job locations, company industries, and more
  • Excludes job postings by staffing and recruiting companies
  • Provides company and job poster data along with job posting data

Examples

This example returns marketing manager jobs posted by Microsoft and Shopify.

1run_input = {
2    "positive_job_titles": [
3        "marketing manager"
4    ],
5    "positive_company_linkedin_urls": [
6        "https://www.linkedin.com/company/microsoft",
7        "https://www.linkedin.com/company/spotify"
8    ]
9}
10run = client.actor("carvedai/linkedin-jobs-api").call(run_input=run_input)
11print(list(client.dataset(run["defaultDatasetId"]).iterate_items()))

Expected Output:

1[
2    {
3        "job_posting_linkedin_url": "https://www.linkedin.com/jobs/view/product-marketing-manager-thought-leadership-storytelling-at-microsoft-4029671279",
4        "job_posting_job_title": "Product Marketing Manager - Thought Leadership & Storytelling",
5        "job_posting_location": "California, United States",
6        "job_posting_description": "Are you a strategic thinker with a passion for education and skilling?...",
7        "job_posting_date_posted": "2024-09-19T21:24:49.000",
8        "job_posting_job_type": "Full-time",
9        "job_posting_poster_name": "",
10        "job_posting_poster_linkedin_url": "",
11        "company_linkedin_url": "https://www.linkedin.com/company/microsoft",
12        "company_name": "Microsoft",
13        "company_location": "Redmond, Washington, US",
14        "company_industry": "Software Development",
15        "company_size": "10,001+",
16        "company_overview": "Every company has a mission. What's ours?...",
17        "company_specialties": "Business Software, Developer Tools, Home & Educational Software, Tablets, Search, Advertising, Servers, Windows Operating System, Windows Applications & Platforms, Smartphones, Cloud Computing, Quantum Computing, Future of Work, Productivity, AI, Artificial Intelligence, Machine Learning, Laptops, Mixed Reality, Virtual Reality, Gaming, Developers, and IT Professional",
18        "company_website_url": "https://news.microsoft.com/"
19    },
20    {
21        "job_posting_linkedin_url": "https://www.linkedin.com/jobs/view/associate-marketing-manager-latam-at-spotify-4030273548",
22        "job_posting_job_title": "Associate Marketing Manager - LATAM",
23        "job_posting_location": "Miami, FL",
24        "job_posting_description": "Reporting to the Head of Marketing for LATAM, your mission will be to handle\nall marketing activities across the region, ensuring they deliver on the\nregional and global strategy...",
25        "job_posting_date_posted": "2024-09-19T17:53:49.000",
26        "job_posting_job_type": "Full-time",
27        "job_posting_poster_name": "",
28        "job_posting_poster_linkedin_url": "",
29        "company_linkedin_url": "https://www.linkedin.com/company/spotify",
30        "company_name": "Spotify",
31        "company_location": "Stockholm, Stockholm County, SE",
32        "company_industry": "Musicians",
33        "company_size": "5,001-10,000",
34        "company_overview": "Our mission is to unlock the potential of human creativity...",
35        "company_specialties": "",
36        "company_website_url": "http://www.lifeatspotify.com"
37    }
38]

Support

Reach out to us if you need anything: hello at carvedai.com

Made by CarvedAI

Email: hello at carvedai.com

Website: https://www.carvedai.com

Frequently Asked Questions

Is it legal to scrape job listings or public data?

Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.

Do I need to code to use this scraper?

No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.

What data does it extract?

It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.

Can I scrape multiple pages or filter by location?

Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.

How do I get started?

You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!