> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape Google Jobs listings

> Runs the Google Jobs vertical (`udm=8`) for `q` and returns the job cards as JSON: `title`, `company`, `location`, `via` (source), `salary`, `employmentType`, `remote`, `postedAge`, `qualifications`, `benefits`, `logo`, a stable `jobId` and a `shareUrl`. Append a `location` to narrow the search, and set `proxy_country`/`gl`/`hl` to target a market. One render returns ~10 jobs (v1).



## OpenAPI

````yaml /api-reference/openapi.json post /jobs/google-jobs
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /jobs/google-jobs:
    post:
      tags:
        - Plugins
      summary: Scrape Google Jobs listings
      description: >-
        Runs the Google Jobs vertical (`udm=8`) for `q` and returns the job
        cards as JSON: `title`, `company`, `location`, `via` (source), `salary`,
        `employmentType`, `remote`, `postedAge`, `qualifications`, `benefits`,
        `logo`, a stable `jobId` and a `shareUrl`. Append a `location` to narrow
        the search, and set `proxy_country`/`gl`/`hl` to target a market. One
        render returns ~10 jobs (v1).
      operationId: google_jobs_jobs_google_jobs_post
      parameters:
        - name: q
          in: query
          required: true
          schema:
            type: string
            description: Job search term, e.g. 'software engineer' or 'nurse'.
            title: Q
          description: Job search term, e.g. 'software engineer' or 'nurse'.
        - name: location
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Optional location, appended to the query, e.g. 'Austin, TX'.
            title: Location
          description: Optional location, appended to the query, e.g. 'Austin, TX'.
        - name: hl
          in: query
          required: false
          schema:
            type: string
            description: Google UI language, e.g. 'en', 'de'.
            default: en
            title: Hl
          description: Google UI language, e.g. 'en', 'de'.
        - name: gl
          in: query
          required: false
          schema:
            type: string
            description: Google country of search, ISO-2, e.g. 'us'.
            default: us
            title: Gl
          description: Google country of search, ISO-2, e.g. 'us'.
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: How many jobs to return. One render yields ~10 (v1).
            default: 10
            title: Max Results
          description: How many jobs to return. One render yields ~10 (v1).
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Exit-IP country (ISO-2). Jobs are location-sensitive; pick the
              market you want.
            title: Proxy Country
          description: >-
            Exit-IP country (ISO-2). Jobs are location-sensitive; pick the
            market you want.
      responses:
        '200':
          description: JSON with a `jobs` array plus the query and count.
          content:
            application/json:
              schema: {}
        '403':
          description: Blocked by Google CAPTCHA after retries - try another proxy_country.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: No jobs collected (upstream block or no matches).
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````