Skip to main content
GET
/
api
/
v1
/
job
/
search
Search Jobs
curl --request GET \
  --url https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search \
  --header 'x-rapidapi-key: <api-key>'
import requests

url = "https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search"

headers = {"x-rapidapi-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};

fetch('https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-rapidapi-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search")
.header("x-rapidapi-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/job/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "cost": 1,
  "data": [
    {
      "id": "4182818517",
      "title": "DevSecOps Engineer Intern",
      "url": "https://www.linkedin.com/jobs/view/4182818517",
      "listed_at": "2025-03-15T03:15:50.000Z",
      "is_promote": false,
      "is_easy_apply": false,
      "location": "United States (Remote)",
      "company": {
        "id": "2847303",
        "name": "Coventry Workers' Comp & Auto Networks",
        "url": "https://www.linkedin.com/company/2847303",
        "verified": true,
        "logo": [
          {
            "width": 400,
            "height": 400,
            "url": "https://media.licdn.com/dms/image/v2/D4E0BAQHjelLY2a-Mnw/company-logo_400_400/company-logo_400_400/0/1666083635765?e=1748476800&v=beta&t=V_T_yXL6Bs2HDEY-iZAKSkNype7_-7USjP2HIXo0Zv8",
            "expires_at": 1748476800000
          }
        ]
      }
    }
  ]
}
{
"message": "Bad request"
}
{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}
{
"message": "You are not subscribed to this API."
}
{
"success": false,
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Oops, it looks like there was an issue processing your request. Don't worry, you won't be charged for this request. If you need any help, don't hesitate to contact us via email [email protected] or telegram https://t.me/saleleads"
}

Authorizations

x-rapidapi-key
string
header
required

Rapid API Key

Query Parameters

keyword
string
required

Search keyword for job titles or descriptions

Minimum string length: 1
Example:

"Backend Developer"

page
integer
default:1

Page number for pagination

Example:

1

sort_by
enum<string>
default:recent

Sort jobs by recent or relevance

Available options:
recent,
relevant
Example:

"recent"

date_posted
enum<string>

Filter jobs by the date they were posted

Available options:
anytime,
past_month,
past_week,
past_24_hours
Example:

"anytime"

geocode
string

Geographical code for location-based search

Pattern: ^\d+$
Example:

"103644278"

company
string

Filter jobs by company ID

Pattern: ^\d+$
Example:

"1441"

experience_level
enum<string>

Filter jobs by required experience level

Available options:
internship,
entry_level,
associate,
mid_senior,
director,
executive
Example:

"internship"

remote
enum<string>

Filter jobs by work location type

Available options:
onsite,
remote,
hybrid
Example:

"onsite"

job_type
enum<string>

Filter jobs by type of employment

Available options:
full_time,
part_time,
contract,
temporary,
volunteer,
internship,
other
Example:

"full_time"

easy_apply
boolean

Filter jobs that are easy to apply for

Example:

true

has_verifications
boolean

Filter jobs that have company verifications

Example:

true

under_10_applicants
boolean

Filter jobs with fewer than 10 applicants

Example:

true

fair_chance_employer
boolean

Filter jobs from fair chance employers

Example:

true

industry_ids
string

Comma-separated industry IDs

Example:

"4,435"

Response

Success

success
boolean
Example:

true

cost
number

Cost of the request

Example:

1

data
object[]

Array of job search results