Skip to main content
GET
/
v1
/
google
/
jobs
/
search
Search Google Jobs
curl --request GET \
  --url https://scrapebadger.com/v1/google/jobs/search \
  --header 'x-api-key: <api-key>'
import requests

url = "https://scrapebadger.com/v1/google/jobs/search"

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

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

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

fetch('https://scrapebadger.com/v1/google/jobs/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://scrapebadger.com/v1/google/jobs/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-api-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://scrapebadger.com/v1/google/jobs/search"

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

req.Header.Add("x-api-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://scrapebadger.com/v1/google/jobs/search")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://scrapebadger.com/v1/google/jobs/search")

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

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

response = http.request(request)
puts response.read_body
{
  "pagination": {
    "current": 1,
    "next": "<string>",
    "total_results": 123,
    "total_pages": 123,
    "page_no": {}
  },
  "jobs": [
    {
      "title": "<string>",
      "company_name": "<string>",
      "location": "<string>",
      "via": "<string>",
      "url": "<string>",
      "description": "<string>",
      "salary": {
        "min": "<string>",
        "max": "<string>",
        "currency": "<string>",
        "period": "<string>"
      },
      "job_type": "<string>",
      "schedule_type": "<string>",
      "work_from_home": false,
      "posted_at": "<string>",
      "thumbnail": "<string>",
      "apply_options": [
        {
          "source": "<string>",
          "link": "<string>",
          "title": "<string>"
        }
      ],
      "apply_links": [
        "<string>"
      ],
      "job_highlights": {
        "qualifications": [
          "<string>"
        ],
        "responsibilities": [
          "<string>"
        ],
        "benefits": [
          "<string>"
        ]
      },
      "extensions": [
        "<string>"
      ]
    }
  ],
  "jobs_results": [
    {
      "title": "<string>",
      "company_name": "<string>",
      "location": "<string>",
      "via": "<string>",
      "url": "<string>",
      "description": "<string>",
      "salary": {
        "min": "<string>",
        "max": "<string>",
        "currency": "<string>",
        "period": "<string>"
      },
      "job_type": "<string>",
      "schedule_type": "<string>",
      "work_from_home": false,
      "posted_at": "<string>",
      "thumbnail": "<string>",
      "apply_options": [
        {
          "source": "<string>",
          "link": "<string>",
          "title": "<string>"
        }
      ],
      "apply_links": [
        "<string>"
      ],
      "job_highlights": {
        "qualifications": [
          "<string>"
        ],
        "responsibilities": [
          "<string>"
        ],
        "benefits": [
          "<string>"
        ]
      },
      "extensions": [
        "<string>"
      ]
    }
  ],
  "filters": [
    {
      "name": "<string>",
      "options": [
        {
          "label": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

x-api-key
string
header
required

Query Parameters

q
string
required

Job title / keywords / combined query.

location
string | null

City / state / region — concatenated with q before sending to Google.

gl
string
default:us

Country code (ISO 3166 alpha-2).

country
string | null

Alias for gl; when present overrides it.

hl
string
default:en

Language code.

language
string | null

Alias for hl; when present overrides it.

domain
string
default:google.com

Google domain for locale-specific results (google.com, google.co.uk, google.co.in, …).

job_type
enum<string> | null

Employment type — translated into a chips filter.

Available options:
FULLTIME,
PARTTIME,
CONTRACTOR,
INTERN
date_posted
enum<string> | null

Posted-date window — translated into a chips filter.

Available options:
today,
3days,
week,
month
ltype
enum<string> | null

Work arrangement — maps onto Google's remote/hybrid/onsite chips.

Available options:
remote,
hybrid,
onsite,
work_from_home
chips
string | null

Raw Google chip-filter string (comma-separated). Merged with any structured filters (job_type, date_posted, ltype).

uds
string | null

Opaque Google filter token harvested from a prior Jobs search URL.

uule
string | null

Google's UULE-encoded location (e.g. w+CAIQIFJlbGF5IFN0YXRlcw==).

lrad
string | null

Search radius around the location (Google accepts a distance in miles).

next_page_token
string | null

Opaque token from the previous response's pagination.next.

mode
enum<string>
default:rpc

Data source. rpc (default, ~300 ms) replays Google's own r06xKb batchexecute RPC on the Google Careers portal — clean JSON, 20 roles per page, scope = Google's internal openings. serp uses the public Jobs search vertical (udm=8, SERP-embedded, 3rd-party aggregator) and costs more latency because Google gates it behind JS.

Available options:
rpc,
serp

Response

Successful Response

Response for GET /api/v1/jobs/search.

pagination
Pagination · object
required

Pagination metadata.

jobs
JobResult · object[]
jobs_results
JobResult · object[]
filters
JobFilter · object[]