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", "Dakar"
date_since_posted "1hr","24hr","past week","past month" "past week"
job_type "full time", "part time", "contract", "temporary", "internship", "volunteer" "full time"
remote_filter "remote", "on site", "hybrid" "remote"
salary "40000", "60000", "100000", "120000" "100000"
experience_level "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",
remote_filter="remote",
job_type="full time",
date_since_posted="past week",
limit="10"
)

3. Senior + good salary

jobs = query(
keyword="software engineer",
experience_level="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,
sort_by="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.3.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.3-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: linkedin_jobs_api_py-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 1f0a92a63331d021f9027109b050627c99402fb4b20e472db70fb7495a5ae5b9
MD5 cfa94377b0b00d056c30c0219772a283
BLAKE2b-256 1e124fe6b94fa0a223d28c9df00460342e149a6dc277ae6dbf655c2b8b01521e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for linkedin_jobs_api_py-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9f6ff70cfa73013df84d0b3255327350155cfc62ad5ccd591da246c26fa85737
MD5 db9a9bdca3ba60c71c8466719667ec70
BLAKE2b-256 91acae4892d646e4565c5f6c598e7747985350fc9dd28ff3af396d31eb79baca

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