LinkedIn Job API

Access comprehensive LinkedIn job data, listings, and career insights through a powerful REST API.

What is the LinkedIn Job API?

Our LinkedIn Job API provides developers with access to comprehensive job listings, career opportunities, and employment market data. Integrate LinkedIn job information seamlessly into your applications with a RESTful API interface.

Key Features

  • Job listings search with advanced filtering
  • Detailed job descriptions and requirements
  • Company information and employer profiles
  • Salary data and job market trends

Example Request

const axios = require("axios");

const options = {
  method: 'GET',
  url: 'https://linkedin-job-api.p.rapidapi.com/search',
  params: {
    keywords: 'software engineer',
    location: 'San Francisco, CA',
    limit: '10'
  },
  headers: {
    'X-RapidAPI-Key': 'YOUR_API_KEY',
    'X-RapidAPI-Host': 'linkedin-job-api.p.rapidapi.com'
  }
};

try {
  const response = await axios.request(options);
  console.log(response.data);
} catch (error) {
  console.error(error);
}
                    

Example Response

{
  "success": true,
  "totalResults": 845,
  "page": 1,
  "pageSize": 10,
  "jobs": [
    {
      "id": "3562148394",
      "title": "Senior Software Engineer",
      "company": "TechCorp Inc.",
      "location": "San Francisco, CA",
      "description": "We are looking for an experienced software engineer to join our team...",
      "employmentType": "Full-time",
      "experienceLevel": "Mid-Senior level",
      "postedDate": "2023-09-18T14:30:00Z",
      "url": "https://www.linkedin.com/jobs/view/3562148394",
      "salary": {
        "min": 140000,
        "max": 180000,
        "currency": "USD",
        "period": "year"
      },
      "applicants": 34,
      "skills": ["JavaScript", "React", "Node.js", "AWS"]
    },
    // More job listings...
  ]
}
                    

API Benefits

Real-time Data

Access the latest job listings and career opportunities as they're posted on LinkedIn.

Secure & Reliable

Enterprise-grade security and 99.9% uptime guarantee with consistent API response times.

Developer Friendly

Comprehensive documentation, client libraries, and dedicated developer support.

Common Use Cases

Job Boards & Portals

Create comprehensive job boards or career portals by aggregating listings from LinkedIn. Enhance your existing platforms with real-time job data to provide users with a one-stop solution for their job search needs.

Career Analytics Tools

Build advanced analytics tools that provide insights into job market trends, salary benchmarks, and in-demand skills. Help professionals make data-driven career decisions based on current industry demands.

Recruitment Solutions

Enhance recruitment platforms with LinkedIn job data to improve matching algorithms and provide more comprehensive job recommendations to candidates based on their skills and experience.

Ready to integrate LinkedIn job data?

Get started with our API today and build powerful job search and career-focused applications

Get Your API Key