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

# Scrape Amazon search listings

> Searches any regional Amazon marketplace for `keyword` and returns the result cards as JSON: `asin`, `title`, `price` + `currency`, `listPrice`, `rating`, `reviewCount`, a clean product `url`, `image`, and the `sponsored` / `prime` flags. Filter with `min_price` / `max_price`, order with `sort` (featured, price_asc, price_desc, avg_review, newest), and page with `page`.

Fetch each result's full detail (all fields above plus features and images) through `POST /marketplace/amazon-product`. Some cards show no price on the search page (Amazon defers it, or the item has buying options); those return `price: null` and are kept in the list rather than dropped. `proxy_country` defaults to the marketplace's home country (Oxylabs ISP + iProyal ISP pool) so prices are in the expected currency.



## OpenAPI

````yaml /api-reference/openapi.json post /marketplace/amazon-search
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:
  /marketplace/amazon-search:
    post:
      tags:
        - Plugins
      summary: Scrape Amazon search listings
      description: >-
        Searches any regional Amazon marketplace for `keyword` and returns the
        result cards as JSON: `asin`, `title`, `price` + `currency`,
        `listPrice`, `rating`, `reviewCount`, a clean product `url`, `image`,
        and the `sponsored` / `prime` flags. Filter with `min_price` /
        `max_price`, order with `sort` (featured, price_asc, price_desc,
        avg_review, newest), and page with `page`.


        Fetch each result's full detail (all fields above plus features and
        images) through `POST /marketplace/amazon-product`. Some cards show no
        price on the search page (Amazon defers it, or the item has buying
        options); those return `price: null` and are kept in the list rather
        than dropped. `proxy_country` defaults to the marketplace's home country
        (Oxylabs ISP + iProyal ISP pool) so prices are in the expected currency.
      operationId: amazon_search_marketplace_amazon_search_post
      parameters:
        - name: keyword
          in: query
          required: true
          schema:
            type: string
            description: Search phrase, e.g. 'wireless headphones' or a brand + model.
            title: Keyword
          description: Search phrase, e.g. 'wireless headphones' or a brand + model.
        - name: marketplace
          in: query
          required: false
          schema:
            type: string
            description: >-
              Regional Amazon site to search. Prices and currency differ per
              marketplace. One of: amazon.com, amazon.co.uk, amazon.de,
              amazon.fr, amazon.it, amazon.es, amazon.nl, amazon.se, amazon.pl,
              amazon.com.be, amazon.com.tr, amazon.ca, amazon.com.mx,
              amazon.com.br, amazon.co.jp, amazon.in, amazon.ae, amazon.sa,
              amazon.sg, amazon.com.au.
            default: amazon.com
            title: Marketplace
          description: >-
            Regional Amazon site to search. Prices and currency differ per
            marketplace. One of: amazon.com, amazon.co.uk, amazon.de, amazon.fr,
            amazon.it, amazon.es, amazon.nl, amazon.se, amazon.pl,
            amazon.com.be, amazon.com.tr, amazon.ca, amazon.com.mx,
            amazon.com.br, amazon.co.jp, amazon.in, amazon.ae, amazon.sa,
            amazon.sg, amazon.com.au.
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: 1-based page number.
            default: 1
            title: Page
          description: 1-based page number.
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: >-
              Result order: featured, price_asc, price_desc, avg_review, newest.
              Default 'featured'.
            default: featured
            title: Sort
          description: >-
            Result order: featured, price_asc, price_desc, avg_review, newest.
            Default 'featured'.
        - name: min_price
          in: query
          required: false
          schema:
            anyOf:
              - type: number
                minimum: 0
              - type: 'null'
            description: Lowest price to include, in the marketplace's currency.
            title: Min Price
          description: Lowest price to include, in the marketplace's currency.
        - name: max_price
          in: query
          required: false
          schema:
            anyOf:
              - type: number
                minimum: 0
              - type: 'null'
            description: Highest price to include, in the marketplace's currency.
            title: Max Price
          description: Highest price to include, in the marketplace's currency.
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Exit-IP country (ISO-2). Defaults to the marketplace's home
              country so prices come back in the expected currency; routed
              through the Oxylabs ISP + iProyal ISP pool.
            title: Proxy Country
          description: >-
            Exit-IP country (ISO-2). Defaults to the marketplace's home country
            so prices come back in the expected currency; routed through the
            Oxylabs ISP + iProyal ISP pool.
      responses:
        '200':
          description: JSON with a `results` array of product cards.
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid search parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Amazon 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.

````