Scrapingdog
HomePricingSupportLogin
  • Documentation
  • Web Scraping API
    • Request Customization
      • Javascript Rendering
        • Wait when rendering Javascript
      • Custom Headers
      • Premium Residential Proxies
      • Geotargeting
      • Sessions
  • POST Request
  • Google Search Scraper API
    • Google Country Parameter: Supported Google Countries
    • Supported Google Countries via cr parameter
    • Google Domains Page
    • Google Language Page
    • Google LR Language Page
  • Google AI Overview API
  • Google Maps API
    • Google Maps Posts API
    • Google Maps Photos API
    • Google Maps Reviews API
    • Google Maps Places API
  • Google Trends API
    • Google Trends Autocomplete API
    • Google Trends Trending Now API
  • Google Images API
  • Google News API
    • Google News API 2.0
  • Google Shopping API
  • Google Product API
  • Google Videos API
  • Google Shorts API
  • Google Autocomplete API
  • Google Scholar API
    • Google Scholar Profiles API
    • Google Scholar Author API
      • Google Scholar Author Citation API
    • Google Scholar Cite API
  • Google Finance API
  • Google Lens API
  • Google Jobs API
  • Google Local API
  • Google Patents API
    • Google Patent Details API
  • Bing Search Scraper API
  • Amazon Scraper API
    • Amazon Product Scraper
    • Amazon Search Scraper
    • Amazon Reviews API
    • Amazon Autocomplete Scraper
  • Instagram Scraper API
  • Linkedin Scraper API
    • Person Profile Scraper
    • Company Profile Scraper
  • Linkedin Jobs Scraper
    • Scrape Linkedin Jobs
    • Scrape LinkedIn Job Overview
  • Yelp Scraper API
  • Twitter Scraping API
    • X Scraping API 2.0
  • Indeed Scraper API
  • Zillow Scraper API
  • Youtube Scraper API
    • Youtube Search API
    • YouTube Transcripts API
    • YouTube Channel API
  • Walmart Scraper API
    • Walmart Product Scraper
    • Walmart Search Scraper
    • Walmart Reviews Scraper
  • Screenshot API
  • Webhook Integration
  • Datacenter Proxies
  • Account API
Powered by GitBook
On this page
  • Parameters
  • API Example
  • Response
  1. Linkedin Jobs Scraper

Scrape Linkedin Jobs

With this API you can scrape LinkedIn jobs for any given area and field. You can even sort them on the basis of their posting dates.

You have to send a GET request to http://api.scrapingdog.com/linkedinjobs with the below-given parameters.

Parameters

Parameter
Description

api_key required

Your personal API key. Available on your dashboard Type: String

field required

You can use this parameter to pass either a job title or the name of the company.

Example - Product Manager

OR

Example - Amazon Type: String

geoid required

This is the unique location ID issued by LinkedIn itself. You can find it inside the LinkedIn jobs URL. Type: String

page required

This is the page number of the LinkedIn jobs page. It should be greater than 0. Type: String

sort_by

This is an optional parameter through which you can sort jobs on the basis of their posting dates. Possible Values - day, week or month day will provide jobs that were posted in the last 24 hours. week will provide for the last 7 days and month will provide for the last 30 days.

Type: String

job_type

This parameter will help you extract all the jobs according to the type of job offered by the company. Possible Values - temporary, contract, volunteer, full_time & part_time. Type: String

exp_level

This parameter will help you filter out the jobs based on the experience required to apply for the job. Possible Values - internship, entry_level, associate, mid_senior_level & director. Type: String

work_type

This parameter will help you filter out the jobs based on their working model. Possible Values - at_work, remote, & hybrid. Type: String

filter_by_company

This parameter requires company LinkedIn ID and will help you get jobs for that particular company. Type: String

API Example

curl "https://api.scrapingdog.com/linkedinjobs/?api_key=5eaa61a6e562fc52fe763tr516e4653&field=python&geoid=100293800&page=1"
import requests

# Define the URL and parameters
url = "https://api.scrapingdog.com/linkedinjobs/"
params = {
    "api_key": "5eaa61a6e562fc52fe763tr516e4653",
    "field": "python",
    "geoid": "100293800",
    "page": "1"
}

# Send a GET request with the parameters
response = requests.get(url, params=params)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Access the response content
    data = response.json()
    print(data)
else:
    print("Request failed with status code:", response.status_code)
const axios = require('axios');

// Define the URL and parameters
const url = "https://api.scrapingdog.com/linkedinjobs/";
const params = {
    api_key: "5eaa61a6e562fc52fe763tr516e4653",
    field: "python",
    geoid: "100293800",
    page: 1
};

// Send a GET request with the parameters
axios.get(url, { params })
    .then(response => {
        // Check if the request was successful (status code 200)
        if (response.status === 200) {
            // Access the response data
            const data = response.data;
            console.log(data);
        } else {
            console.log("Request failed with status code:", response.status);
        }
    })
    .catch(error => {
        console.error("An error occurred:", error);
    });
<?php

// Define the URL and parameters
$url = "https://api.scrapingdog.com/linkedinjobs/";
$params = [
    'api_key' => '5eaa61a6e562fc52fe763tr516e4653',
    'field' => 'python',
    'geoid' => '100293800',
    'page' => 1
];

// Initialize cURL session
$ch = curl_init($url);

// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));

// Execute cURL session
$response = curl_exec($ch);

// Check if the request was successful
if ($response !== false) {
    // Access the response data
    echo $response;
} else {
    echo 'Request failed: ' . curl_error($ch);
}

// Close cURL session
curl_close($ch);

?>
require 'net/http'
require 'uri'

# Define the URL and parameters
url = URI.parse("https://api.scrapingdog.com/linkedinjobs/?api_key=5eaa61a6e562fc52fe763tr516e4653&field=python&geoid=100293800&page=1")

# Send a GET request
response = Net::HTTP.get(url)

# Check if the request was successful (status code 200)
if response.code == '200'
  puts response.body
else
  puts "Request failed with status code: #{response.code}"
end
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        OkHttpClient client = new OkHttpClient();
        String url = "https://api.scrapingdog.com/linkedinjobs/?api_key=5eaa61a6e562fc52fe763tr516e4653&field=python&geoid=100293800&page=1";

        Request request = new Request.Builder()
                .url(url)
                .get()
                .build();

        try {
            Response response = client.newCall(request).execute();
            if (response.isSuccessful()) {
                System.out.println(response.body().string());
            } else {
                System.out.println("Request failed with status code: " + response.code());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Response

[
    {
        "job_position": "Business Analyst",
        "job_link": "https://www.linkedin.com/jobs/view/business-analyst-at-searchpros-3736845912?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=aOwemBcBn%2BUx8xndzwdE1A%3D%3D&position=1&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3736845912",
        "company_name": "SearchPros",
        "company_profile": "https://www.linkedin.com/company/searchpros?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-10-17"
    },
    {
        "job_position": "Python Developer [Job ID 20231006]",
        "job_link": "https://www.linkedin.com/jobs/view/python-developer-job-id-20231006-at-phoenix-cyber-3735954045?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=lHYoLv5FK5KoDbPeoJM%2BFQ%3D%3D&position=2&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3735954045",
        "company_name": "Phoenix Cyber",
        "company_profile": "https://www.linkedin.com/company/phoenixcyber?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Blue Diamond, NV",
        "job_posting_date": "2023-10-09"
    },
    {
        "job_position": "IT Support Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/it-support-engineer-at-the-penta-building-group-3735207686?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=wFMvuRjbiK9uLTB6IG0qgw%3D%3D&position=3&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3735207686",
        "company_name": "The PENTA Building Group",
        "company_profile": "https://www.linkedin.com/company/the-penta-building-group?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-10-06"
    },
    {
        "job_position": "Storage Engineer/Admin - Las Vegas, NV",
        "job_link": "https://www.linkedin.com/jobs/view/storage-engineer-admin-las-vegas-nv-at-spanco-solutions-3719607239?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=KlzUsNAl8EhpYBfIMVfVlg%3D%3D&position=4&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3719607239",
        "company_name": "Spanco Solutions",
        "company_profile": "https://www.linkedin.com/company/spanco-solutions?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-09-18"
    },
    {
        "job_position": "Student Trainee (Engineering)",
        "job_link": "https://www.linkedin.com/jobs/view/student-trainee-engineering-at-usda-3737214565?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=08wDBFpIBepBXi5YQa%2B1AA%3D%3D&position=5&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3737214565",
        "company_name": "USDA",
        "company_profile": "https://www.linkedin.com/company/usda?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-10-11"
    },
    {
        "job_position": "IT Specialist (Sysadmin)",
        "job_link": "https://www.linkedin.com/jobs/view/it-specialist-sysadmin-at-u-s-department-of-the-interior-3740798435?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=d5PzPIQj%2B7lusWjuRmyeOw%3D%3D&position=6&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3740798435",
        "company_name": "U.S. Department of the Interior",
        "company_profile": "https://www.linkedin.com/company/department-of-the-interior?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Clark County, NV",
        "job_posting_date": "2023-10-13"
    },
    {
        "job_position": "IT Security Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/it-security-engineer-at-mindpal-3708508897?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=NCYglMzofaYJAHsWZZu8zg%3D%3D&position=7&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3708508897",
        "company_name": "MindPal",
        "company_profile": "https://www.linkedin.com/company/mindpal.co?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Henderson, NV",
        "job_posting_date": "2023-08-31"
    },
    {
        "job_position": "Software Engineer, Cybersecurity, Python, Remote",
        "job_link": "https://www.linkedin.com/jobs/view/software-engineer-cybersecurity-python-remote-at-planet-green-search-llc-3690576995?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=8%2BeuvwdDEJZEsaPbN9rncg%3D%3D&position=8&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3690576995",
        "company_name": "Planet Green Search, LLC",
        "company_profile": "https://www.linkedin.com/company/planet-green-search?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-08-14"
    },
    {
        "job_position": "Trading Data Analyst",
        "job_link": "https://www.linkedin.com/jobs/view/trading-data-analyst-at-caesars-sportsbook-casino-3484032230?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=T9%2BcQspj2HPRH4%2F%2BYeeUAw%3D%3D&position=9&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3484032230",
        "company_name": "Caesars Sportsbook & Casino",
        "company_profile": "https://www.linkedin.com/company/caesarssportsbookandcasino?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-02-28"
    },
    {
        "job_position": "Software Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/software-engineer-at-leidos-3744504760?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=v49GQrl09FXi09GxNpoFxw%3D%3D&position=10&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3744504760",
        "company_name": "Leidos",
        "company_profile": "https://www.linkedin.com/company/leidos?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-09-25"
    },
    {
        "job_position": "Operations Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/operations-engineer-at-the-boring-company-3636596153?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=9Pl4jVsqjunM82iW2NSKBw%3D%3D&position=11&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3636596153",
        "company_name": "The Boring Company",
        "company_profile": "https://www.linkedin.com/company/tbc-theboringcompany?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-06-21"
    },
    {
        "job_position": "Software Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/software-engineer-at-sigma-commerce-3545898011?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=2humMgVZ%2B9ZMY%2FqgwTQhew%3D%3D&position=12&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3545898011",
        "company_name": "Sigma Commerce",
        "company_profile": "https://www.linkedin.com/company/sigmacommerce?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-03-05"
    },
    {
        "job_position": "Analyst I (May 2024 Graduates) - Las Vegas",
        "job_link": "https://www.linkedin.com/jobs/view/analyst-i-may-2024-graduates-las-vegas-at-caesars-entertainment-inc-3725766432?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=y4wqojXyOUaye78f688Kqw%3D%3D&position=13&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3725766432",
        "company_name": "Caesars Entertainment, Inc.",
        "company_profile": "https://www.linkedin.com/company/caesars-entertainment-inc?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-09-21"
    },
    {
        "job_position": "Merchant Services and Risk Analyst",
        "job_link": "https://www.linkedin.com/jobs/view/merchant-services-and-risk-analyst-at-allegiant-3697382669?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=GguIOlbqd19FgBYVCPIzlA%3D%3D&position=14&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3697382669",
        "company_name": "Allegiant",
        "company_profile": "https://www.linkedin.com/company/allegiant-air?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-08-18"
    },
    {
        "job_position": "Systems Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/systems-engineer-at-axiologic-solutions-llc-3710329387?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=PmQv7ys9TKUruFgdCzOAMg%3D%3D&position=15&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3710329387",
        "company_name": "Axiologic Solutions LLC",
        "company_profile": "https://www.linkedin.com/company/axiologic-solutions-llc?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Nellis AFB, NV",
        "job_posting_date": "2023-08-08"
    },
    {
        "job_position": "Entry-Level Electrical Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/entry-level-electrical-engineer-at-vadatech-inc-3700209874?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=mapYXFEzL7nijYkvqDowow%3D%3D&position=16&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3700209874",
        "company_name": "VadaTech Inc.",
        "company_profile": "https://www.linkedin.com/company/vadatech-inc.?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Henderson, NV",
        "job_posting_date": "2023-09-06"
    },
    {
        "job_position": "Controls & Automation Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/controls-automation-engineer-at-cybercoders-3733322217?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=W7NfxiLlPB6WP5PfaBHd8Q%3D%3D&position=17&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3733322217",
        "company_name": "CyberCoders",
        "company_profile": "https://www.linkedin.com/company/cybercoders?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Henderson, NV",
        "job_posting_date": "2023-10-06"
    },
    {
        "job_position": "Manager, Technical FP&A",
        "job_link": "https://www.linkedin.com/jobs/view/manager-technical-fp-a-at-curaleaf-3738129801?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=j1cj42XOUS0WhkiThw3cXA%3D%3D&position=18&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3738129801",
        "company_name": "Curaleaf",
        "company_profile": "https://www.linkedin.com/company/curaleaf?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-10-17"
    },
    {
        "job_position": "Intern, Financial Analyst (Summer 2024)",
        "job_link": "https://www.linkedin.com/jobs/view/intern-financial-analyst-summer-2024-at-allegiant-3717010279?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=M%2F2lrGvTXbdrK8KlMXPWqg%3D%3D&position=19&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3717010279",
        "company_name": "Allegiant",
        "company_profile": "https://www.linkedin.com/company/allegiant-air?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-09-11"
    },
    {
        "job_position": "YouthWorks Teen Intern",
        "job_link": "https://www.linkedin.com/jobs/view/youthworks-teen-intern-at-discovery-children-s-museum-3692935607?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=dI%2FWlODKQRkGme9o00P0%2BQ%3D%3D&position=20&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3692935607",
        "company_name": "DISCOVERY Children's Museum",
        "company_profile": "https://www.linkedin.com/company/discoverychildrensmuseum?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-08-16"
    },
    {
        "job_position": "Data Centre Engineer",
        "job_link": "https://www.linkedin.com/jobs/view/data-centre-engineer-at-derisk-technologies-3632410899?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=ooWmBlrsvwJMPlS7fdlJjA%3D%3D&position=21&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3632410899",
        "company_name": "DeRisk Technologies",
        "company_profile": "https://de.linkedin.com/company/derisktechnologies?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-06-09"
    },
    {
        "job_position": "Project Management Interns",
        "job_link": "https://www.linkedin.com/jobs/view/project-management-interns-at-otis-elevator-co-3713611504?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=ECRHDSGnbnEmMl8R%2B1fzkA%3D%3D&position=22&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3713611504",
        "company_name": "Otis Elevator Co.",
        "company_profile": "https://www.linkedin.com/company/otis_elevators?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-09-06"
    },
    {
        "job_position": "Fullstack Developer (Node.JS & React)",
        "job_link": "https://www.linkedin.com/jobs/view/fullstack-developer-node-js-react-at-mindpal-3706658192?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=Cp4ybMEeufq937jIJ3QbqA%3D%3D&position=23&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3706658192",
        "company_name": "MindPal",
        "company_profile": "https://www.linkedin.com/company/mindpal.co?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Henderson, NV",
        "job_posting_date": "2023-08-29"
    },
    {
        "job_position": "Urgent Hiring for Director of Business Analytics in Las Vegas NV",
        "job_link": "https://www.linkedin.com/jobs/view/urgent-hiring-for-%E2%80%8B%E2%80%8Bdirector-of-business-analytics-in-%E2%80%8Blas-vegas-nv-at-vir-consultant-llc-3610290054?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=arD6xTEvr0rkwfgMLghutg%3D%3D&position=24&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3610290054",
        "company_name": "VIR Consultant LLC",
        "company_profile": "https://www.linkedin.com/company/vir-consultants-llc?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-05-19"
    },
    {
        "job_position": "Operations Associate (Part-Time) - The Forum Shops at Caesars Palace",
        "job_link": "https://www.linkedin.com/jobs/view/operations-associate-part-time-the-forum-shops-at-caesars-palace-at-alo-yoga-3697719260?refId=XSyKG0WI1bc14dHgi0pfJQ%3D%3D&trackingId=nvMBDf%2B6oU%2Fh1W7VyOk78g%3D%3D&position=25&pageNum=1&trk=public_jobs_jserp-result_search-card",
        "job_id": "3697719260",
        "company_name": "Alo Yoga",
        "company_profile": "https://www.linkedin.com/company/aloyoga?trk=public_jobs_jserp-result_job-search-card-subtitle",
        "job_location": "Las Vegas, NV",
        "job_posting_date": "2023-10-07"
    }
]
PreviousLinkedin Jobs ScraperNextScrape LinkedIn Job Overview

Last updated 5 months ago