LinkedIn Job Postings (2023 - 2024)
A Snapshot Into the Current Job Market
@kaggle.arshkon_linkedin_job_postings
A Snapshot Into the Current Job Market
@kaggle.arshkon_linkedin_job_postings
Scraper Code - https://github.com/ArshKA/LinkedIn-Job-Scraper
Every day, thousands of companies and individuals turn to LinkedIn in search of talent. This dataset contains a nearly comprehensive record of 124,000+ job postings listed in 2023 and 2024. Each individual posting contains dozens of valuable attributes for both postings and companies, including the title, job description, salary, location, application URL, and work-types (remote, contract, etc), in addition to separate files containing the benefits, skills, and industries associated with each posting. The majority of jobs are also linked to a company, which are all listed in another csv file containing attributes such as the company description, headquarters location, and number of employees, and follower count.
With so many datapoints, the potential for exploration of this dataset is vast and includes exploring the highest compensated titles, companies, and locations; predicting salaries/benefits through NLP; and examining how industries and companies vary through their internship offerings and benefits. Future updates will permit further exploration into time-based trends, including company growth, prevalence of remote jobs, and demand of individual job titles over time.
Thank you to @zoeyyuzou for scraping an additional 100,000 jobs
job_postings.csv
job_details/benefits.csv
company_details/companies.csv
company_details/employee_counts.csv
If you find this dataset helpful, your upvote would convince me I didn't waste my summer break 😁
CREATE TABLE postings (
  "job_id" BIGINT,
  "company_name" VARCHAR,
  "title" VARCHAR,
  "description" VARCHAR,
  "max_salary" DOUBLE,
  "pay_period" VARCHAR,
  "location" VARCHAR,
  "company_id" DOUBLE,
  "views" DOUBLE,
  "med_salary" DOUBLE,
  "min_salary" DOUBLE,
  "formatted_work_type" VARCHAR,
  "applies" DOUBLE,
  "original_listed_time" DOUBLE,
  "remote_allowed" DOUBLE,
  "job_posting_url" VARCHAR,
  "application_url" VARCHAR,
  "application_type" VARCHAR,
  "expiry" DOUBLE,
  "closed_time" DOUBLE,
  "formatted_experience_level" VARCHAR,
  "skills_desc" VARCHAR,
  "listed_time" DOUBLE,
  "posting_domain" VARCHAR,
  "sponsored" BIGINT,
  "work_type" VARCHAR,
  "currency" VARCHAR,
  "compensation_type" VARCHAR,
  "normalized_salary" DOUBLE,
  "zip_code" DOUBLE,
  "fips" DOUBLE
);Anyone who has the link will be able to view this.