Skip to main content

Unofficial LinkedIn Jobs scraper API for Python

Project description

linkedin-jobs-api-py

PyPI version Python 3.9+ License MIT

Unofficial LinkedIn Jobs API for Python - This project is inspired by an npm package linkedin-jobs-api from Vishwa Gaurav. Scrape LinkedIn job postings with all filters (keywork,location,remote, salary, experience, etc.).

🚀 Installation

pip install linkedin-jobs-api-py  

📖 Simple usage

from linkedin_jobs_api import query

# Basic search
jobs = query(keyword="python developer", location="Paris", limit="10")

for job in jobs:
    print(f"💼 {job['position']} @ {job['company']}")
    print(f"📍 {job['location']} | 💰 {job['salary']}")
    print(f"🔗 {job['jobUrl']}\n")

🔍 All available filters

Parameter Possible values Example
keyword Free text "data scientist"
location City/Country "Paris", "Remote"
dateSincePosted "1hr","24hr","past week","past month" "past week"
jobType "full time", "part time", "contract", "temporary", "internship", "volunteer" "full time"
remoteFilter "remote", "on site", "hybrid" "remote"
salary "40000", "60000", "100000", "120000" "100000"
experienceLevel "internship","entry level","associate", "senior", "director","executive" "senior"
limit "1","3"...."10" "5"
page "0", "1", "2"..."999" (10 jobs/page) "1"
has_verification True/False True
under_10_applicants True/False True

💡 Complete examples

1. Simple search

jobs = query(keyword="frontend", location="Lyon", limit="5")

2. Remote + Recent full-time

jobs = query(
keyword="backend developer",
remoteFilter="remote",
jobType="full time",
dateSincePosted="past week",
limit="10"
)

3. Senior + good salary

jobs = query(
keyword="software engineer",
experienceLevel="senior",
salary="100000",
location="France",
limit="8"
)

4. “Easy” jobs (verified, <10 applicants)

jobs = query(
keyword="product manager",
has_verification=True,
under_10_applicants=True,
sortBy="recent"
)

5. Pagination (page 2)

jobs = query(keyword="devops", page="1", limit="10") # Jobs 11-20

📋 Structure of results

{
"position": "Senior Python Developer",
"company": "Google",
"companyLogo": "https://media...png",
"location": "Paris, Île-de-France",
"date": "2025-12-08",
"agoTime": "2 days ago",
"salary": "€80k-€120k",
"jobUrl": "https://www.linkedin.com/jobs/view/..."
}

🛠️ Development

Clone et install dev

git clone <repo>
cd linkedin-jobs-api-py
pip install -e .[dev]

⚠️ Warnings

  • Unofficial use : Comply with LinkedIn's Terms of Use and rate limits.
  • Browser simulation: Complete headers simulating an AJAX request from a real browser
  • Rate limiting awareness: Moderate usage recommended, proxies required for high volumes
  • Changes : LinkedIn may modify its APIs (regular updates).

📄 Licence

MIT License - see LICENSE


⭐ Star so useful!! | 🐛 Issues : GitHub

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linkedin_jobs_api_py-0.1.1.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

linkedin_jobs_api_py-0.1.1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file linkedin_jobs_api_py-0.1.1.tar.gz.

File metadata

  • Download URL: linkedin_jobs_api_py-0.1.1.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for linkedin_jobs_api_py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 85ab727e39a59b58a8772d6fc8da783836c23d697f2cb03c9e6b8eb60eeec5b0
MD5 ab2b32207c2efffec4137eea3996da26
BLAKE2b-256 cf833e3c66127fc846bb6c5336acc4968154ec956b6ee220d319d6ef5d2b5535

See more details on using hashes here.

File details

Details for the file linkedin_jobs_api_py-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for linkedin_jobs_api_py-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1f87dee76d3fc3ac92d22c086b614f69bf2652e2d0a9111516cadb13778db842
MD5 d4dfb79afa9c2dff7b8ba4538941d5dc
BLAKE2b-256 acd48dc0eed118f3fc36441932ab8efa5547830e6acfb5e456bac7023a4a9ef2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page