> ## 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 an Amazon product page

> Fetches a single Amazon product and returns it as JSON: `title`, `brand`, `price` + `currency`, `listPrice` and `savingsPercent`, `availability` (+ a boolean `inStock`), `rating`, `reviewCount`, `seller`, `features` (bullet points), `categories` (breadcrumb) and `images`. Identify the product with either `asin` (plus `marketplace`) or a full product `url`.

Amazon prices each page in the currency of the delivery location it infers from the exit IP, so `proxy_country` defaults to the marketplace's home country (amazon.com -> US) and the call is routed through the Oxylabs ISP + iProyal ISP pool for that country. The exit that served the request is returned as `exitCountry` / `exitProvider`.



## OpenAPI

````yaml /api-reference/openapi.json post /marketplace/amazon-product
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-product:
    post:
      tags:
        - Plugins
      summary: Scrape an Amazon product page
      description: >-
        Fetches a single Amazon product and returns it as JSON: `title`,
        `brand`, `price` + `currency`, `listPrice` and `savingsPercent`,
        `availability` (+ a boolean `inStock`), `rating`, `reviewCount`,
        `seller`, `features` (bullet points), `categories` (breadcrumb) and
        `images`. Identify the product with either `asin` (plus `marketplace`)
        or a full product `url`.


        Amazon prices each page in the currency of the delivery location it
        infers from the exit IP, so `proxy_country` defaults to the
        marketplace's home country (amazon.com -> US) and the call is routed
        through the Oxylabs ISP + iProyal ISP pool for that country. The exit
        that served the request is returned as `exitCountry` / `exitProvider`.
      operationId: amazon_product_marketplace_amazon_product_post
      parameters:
        - name: asin
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Amazon product id (10-char ASIN, e.g. 'B0BSHF7WHW'; books use
              their ISBN-10). Give either `asin` (with `marketplace`) or a full
              `url`.
            title: Asin
          description: >-
            Amazon product id (10-char ASIN, e.g. 'B0BSHF7WHW'; books use their
            ISBN-10). Give either `asin` (with `marketplace`) or a full `url`.
        - name: url
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Full Amazon product url, e.g.
              'https://www.amazon.de/dp/B0BSHF7WHW'. The ASIN and marketplace
              are read from it, so `asin`/`marketplace` are not needed when a
              url is given.
            title: Url
          description: >-
            Full Amazon product url, e.g. 'https://www.amazon.de/dp/B0BSHF7WHW'.
            The ASIN and marketplace are read from it, so `asin`/`marketplace`
            are not needed when a url is given.
        - name: marketplace
          in: query
          required: false
          schema:
            type: string
            description: >-
              Regional Amazon site the ASIN belongs to. 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 the ASIN belongs to. 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: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Exit-IP country (ISO-2, e.g. 'US', 'DE'). Defaults to the
              marketplace's home country so the price comes back in the expected
              currency; routed through the Oxylabs ISP + iProyal ISP pool.
            title: Proxy Country
          description: >-
            Exit-IP country (ISO-2, e.g. 'US', 'DE'). Defaults to the
            marketplace's home country so the price comes back in the expected
            currency; routed through the Oxylabs ISP + iProyal ISP pool.
      responses:
        '200':
          description: Product found and parsed.
          content:
            application/json:
              schema: {}
        '400':
          description: No/invalid ASIN or url, or unsupported marketplace.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Amazon or the product page could not be fetched.
        '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.

````