Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@atharvh01/linkedin-jobs-api
Advanced tools
An unofficial LinkedIn Jobs API to fetch job listings with advanced filtering and rate limiting
An unofficial API to fetch job listings from LinkedIn. This API allows you to search for jobs using keywords, location, and date filters.
Created by: Atharv Hatwar
npm install @atharvh01/linkedin-jobs-api
import express from 'express';
import { searchJobs } from '@atharvh01/linkedin-jobs-api';
const app = express();
const PORT = 3000;
app.get('/api/search', searchJobs);
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});
GET /api/search
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | Search terms (e.g., "react developer") |
location | string | Yes | Job location (e.g., "remote", "Pune") |
dateSincePosted | string | No | Filter by post date (past_24h, past_week, past_month) |
GET /api/search?keywords=react&location=remote&dateSincePosted=past_24h
{
"success": true,
"count": 2,
"jobs": [
{
"title": "Senior React Developer",
"company": "Example Corp",
"location": "Remote",
"link": "https://www.linkedin.com/jobs/view/123456789",
"postedDate": "2023-12-20T10:00:00.000Z",
"description": "We are looking for a Senior React Developer..."
}
]
}
The API returns appropriate error messages and status codes:
{
"success": false,
"error": {
"message": "Keywords parameter is required",
"status": 400
}
}
To prevent abuse, the API implements rate limiting:
# Run the test suite
npm test
# Test specific endpoints
npm run test:api
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
Atharv Hatwar
This package is for educational purposes only. Please review LinkedIn's terms of service before using this API in production.
FAQs
An unofficial LinkedIn Jobs API to fetch job listings with advanced filtering and rate limiting
The npm package @atharvh01/linkedin-jobs-api receives a total of 3 weekly downloads. As such, @atharvh01/linkedin-jobs-api popularity was classified as not popular.
We found that @atharvh01/linkedin-jobs-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.