> ## 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 Indeed job listings

> Searches Indeed for `query` in `location` and returns the job listings as JSON: `title`, `company`, `location`, `salary` (with parsed `min`/`max`), `jobTypes`, `companyRating`, a `snippet` and a clean job `url`. Filter with `country`, `job_type`, `days` (posting age), `remote`, sort with `sort`, and collect up to `max_results` across pages. Indeed sits behind Cloudflare + PerimeterX - handled for you.



## OpenAPI

````yaml /api-reference/openapi.json post /jobs/indeed
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/indeed:
    post:
      tags:
        - Plugins
      summary: Scrape Indeed job listings
      description: >-
        Searches Indeed for `query` in `location` and returns the job listings
        as JSON: `title`, `company`, `location`, `salary` (with parsed
        `min`/`max`), `jobTypes`, `companyRating`, a `snippet` and a clean job
        `url`. Filter with `country`, `job_type`, `days` (posting age),
        `remote`, sort with `sort`, and collect up to `max_results` across
        pages. Indeed sits behind Cloudflare + PerimeterX - handled for you.
      operationId: indeed_search_jobs_indeed_post
      parameters:
        - name: query
          in: query
          required: true
          schema:
            type: string
            description: What to search, e.g. 'software engineer' or 'nurse'.
            title: Query
          description: What to search, e.g. 'software engineer' or 'nurse'.
        - name: country
          in: query
          required: false
          schema:
            type: string
            description: >-
              Indeed country site: us, uk, ca, au, in, ie, de, fr, nl, es, it,
              at, ch, be, pl, se, sg, za, nz, mx.
            default: us
            title: Country
          description: >-
            Indeed country site: us, uk, ca, au, in, ie, de, fr, nl, es, it, at,
            ch, be, pl, se, sg, za, nz, mx.
        - name: location
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Where, e.g. 'Austin, TX' or 'London'.
            title: Location
          description: Where, e.g. 'Austin, TX' or 'London'.
        - name: radius
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Search radius in miles/km around the location.
            title: Radius
          description: Search radius in miles/km around the location.
        - name: job_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Job type: fulltime, parttime, contract, internship, temporary.'
            title: Job Type
          description: 'Job type: fulltime, parttime, contract, internship, temporary.'
        - name: days
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: 'Max posting age in days: 1, 3, 7, 14.'
            title: Days
          description: 'Max posting age in days: 1, 3, 7, 14.'
        - name: remote
          in: query
          required: false
          schema:
            type: boolean
            description: Only remote jobs.
            default: false
            title: Remote
          description: Only remote jobs.
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: 'Ordering: relevance, date.'
            default: relevance
            title: Sort
          description: 'Ordering: relevance, date.'
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: How many jobs to collect across pages.
            default: 30
            title: Max Results
          description: How many jobs to collect across pages.
        - name: start
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: 0-based result offset to start from.
            default: 0
            title: Start
          description: 0-based result offset to start from.
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Exit-IP country (ISO-2). Defaults to the country's site.
            title: Proxy Country
          description: Exit-IP country (ISO-2). Defaults to the country's site.
      responses:
        '200':
          description: JSON with a `jobs` array plus totals.
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Indeed or no results page returned.
        '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.

````