Unofficial LinkedIn Jobs scraper API for Python
Project description
linkedin-jobs-api-py
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" |
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file linkedin_jobs_api_py-0.1.2.tar.gz.
File metadata
- Download URL: linkedin_jobs_api_py-0.1.2.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f53decd24897ddbcdda1f50771db4ea154289f766d3517e70b68eaea66ab7c42
|
|
| MD5 |
5b67380f03c053c916d14ade86608399
|
|
| BLAKE2b-256 |
fec960b603cd4fe1a05d60fd9099aef025356fdbcd96703e4b3ef0239748ab1c
|
File details
Details for the file linkedin_jobs_api_py-0.1.2-py3-none-any.whl.
File metadata
- Download URL: linkedin_jobs_api_py-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f32093a2d3d836fd6d228713173748a23f85a4470c552f9e5461b8fc017baf55
|
|
| MD5 |
82fac9fcf1a4bdc087954cfba98819fa
|
|
| BLAKE2b-256 |
de3a051dd042d39981929c9639fbfb7fb1d57b78a819002bf0b2e46489b3a0e1
|