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

# Get Product Detail

> Full product detail by ASIN (price, variants, badges, buybox, ranks, ...).

## Path Parameters

<ParamField path="asin" type="string" required>
  The Amazon Standard Identification Number (ASIN) of the product. You can find this in search results or extract it from a product URL (`/dp/{ASIN}`).
</ParamField>

## Query Parameters

<ParamField query="domain" type="string" default="com">
  Amazon marketplace TLD or code where the product is listed.

  Examples: `com`, `co.uk`, `de`, `fr`
</ParamField>

<ParamField query="zip" type="string">
  Delivery postal/zip code for a localized buybox and delivery estimate.
</ParamField>

<ParamField query="language" type="string">
  Locale for the product page, e.g. `en_US`, `de_DE`.
</ParamField>

## Response

<ResponseField name="domain" type="string">Marketplace domain the product was fetched from.</ResponseField>

<ResponseField name="product" type="object">
  Full product object.

  <Expandable title="Product object">
    <ResponseField name="asin" type="string">Product ASIN.</ResponseField>
    <ResponseField name="parent_asin" type="string">Parent ASIN if the product is a variation child (nullable).</ResponseField>
    <ResponseField name="title" type="string">Product title.</ResponseField>
    <ResponseField name="brand" type="string">Brand name.</ResponseField>
    <ResponseField name="price" type="object">Current price with `value`, `currency`, `symbol`, `raw`.</ResponseField>
    <ResponseField name="list_price" type="object">Strikethrough list price.</ResponseField>
    <ResponseField name="discount_percent" type="integer">Discount percentage off list price.</ResponseField>
    <ResponseField name="rating" type="number">Average star rating (0-5).</ResponseField>
    <ResponseField name="ratings_total" type="integer">Total number of ratings.</ResponseField>
    <ResponseField name="rating_breakdown" type="object">Percentage of ratings per star bucket (`five_star` ... `one_star`).</ResponseField>
    <ResponseField name="feature_bullets" type="array">Bullet-point feature highlights.</ResponseField>
    <ResponseField name="images" type="array">All product image URLs.</ResponseField>
    <ResponseField name="variants" type="array">Variation children with `asin`, `attributes`, `price`, `is_current`.</ResponseField>
    <ResponseField name="bestsellers_rank" type="array">Best-seller ranks with `rank`, `category`, `link`.</ResponseField>
    <ResponseField name="specifications" type="object">Technical specifications map.</ResponseField>
    <ResponseField name="buybox" type="object">Buy Box winner with `seller_name`, `seller_id`, `price`, `fulfillment`.</ResponseField>
    <ResponseField name="badges" type="object">Badge flags: `amazons_choice`, `best_seller`, `prime`, `climate_pledge_friendly`.</ResponseField>
    <ResponseField name="also_bought" type="array">ASINs frequently bought by the same customers.</ResponseField>
    <ResponseField name="top_reviews" type="array">A handful of featured reviews.</ResponseField>
    <ResponseField name="scraped_at" type="string">ISO 8601 timestamp when the product was scraped.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "domain": "com",
  "product": {
    "asin": "B08N5WRWNW",
    "title": "Echo Dot (4th Gen) Smart speaker with Alexa",
    "brand": "Amazon",
    "price": { "value": 49.99, "currency": "USD", "symbol": "$", "raw": "$49.99" },
    "list_price": { "value": 59.99, "currency": "USD", "symbol": "$", "raw": "$59.99" },
    "discount_percent": 17,
    "rating": 4.7,
    "ratings_total": 184231,
    "rating_breakdown": { "five_star": 78, "four_star": 13, "three_star": 4, "two_star": 2, "one_star": 3 },
    "feature_bullets": ["Meet the Echo Dot - Our most popular smart speaker."],
    "images": ["https://m.media-amazon.com/images/I/714Rdc+abc.jpg"],
    "variants": [
      { "asin": "B08N5WRWNW", "attributes": { "Color": "Charcoal" }, "is_current": true }
    ],
    "bestsellers_rank": [
      { "rank": 334, "category": "Electronics", "link": "https://www.amazon.com/gp/bestsellers/electronics" },
      { "rank": 1, "category": "Smart Speakers", "link": "https://www.amazon.com/gp/bestsellers/electronics/smart-speakers" }
    ],
    "specifications": { "Item Weight": "12 ounces" },
    "buybox": { "seller_name": "Amazon.com", "seller_id": "ATVPDKIKX0DER", "fulfillment": "Amazon" },
    "badges": { "amazons_choice": true, "best_seller": false, "prime": true, "climate_pledge_friendly": true },
    "also_bought": ["B07FZ8S74R", "B08C1W5N87"],
    "top_reviews": [
      { "id": "R1ABCDEF123456", "title": "Great little speaker", "rating": 5, "verified_purchase": true }
    ],
    "scraped_at": "2026-06-03T12:00:00Z"
  }
}
```

<Note>
  Each product detail request costs **10 credits**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/amazon/products/{asin}
openapi: 3.1.0
info:
  title: ScrapeBadger Amazon API
  version: 1.0.0
  description: >-
    Amazon marketplace scraping API for searching products, fetching product
    details, offers, reviews, listings, sellers, and reference data across 20
    marketplaces.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/amazon/products/{asin}:
    get:
      tags:
        - Amazon Products
      summary: Get Product Detail
      description: >-
        Full product detail by ASIN (price, variants, badges, buybox, ranks,
        ...).
      operationId: getAmazonProduct
      parameters:
        - name: asin
          in: path
          required: true
          schema:
            type: string
          description: The Amazon Standard Identification Number (ASIN) of the product.
        - name: domain
          in: query
          schema:
            type: string
            default: com
          description: Amazon marketplace TLD or code (com, co.uk, de, ...).
        - name: zip
          in: query
          schema:
            type: string
          description: Delivery postal/zip code for a localized buybox.
        - name: language
          in: query
          schema:
            type: string
          description: Locale for the product page, e.g. en_US, de_DE.
      responses:
        '200':
          description: Product detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  domain:
                    type: string
                  product:
                    $ref: '#/components/schemas/Product'
              example:
                domain: com
                product:
                  asin: B08N5WRWNW
                  parent_asin: B08N5M9NMG
                  title: Echo Dot (4th Gen) Smart speaker with Alexa
                  link: https://www.amazon.com/dp/B08N5WRWNW
                  brand: Amazon
                  manufacturer: Amazon
                  model_number: B7W64E
                  price:
                    value: 49.99
                    currency: USD
                    symbol: $
                    raw: $49.99
                  list_price:
                    value: 59.99
                    currency: USD
                    symbol: $
                    raw: $59.99
                  savings_amount:
                    value: 10
                    currency: USD
                    symbol: $
                    raw: $10.00
                  discount_percent: 17
                  rating: 4.7
                  ratings_total: 184231
                  rating_breakdown:
                    five_star: 78
                    four_star: 13
                    three_star: 4
                    two_star: 2
                    one_star: 3
                  bought_past_month: 20K+ bought in past month
                  in_stock: true
                  availability: In Stock
                  feature_bullets:
                    - >-
                      Meet the Echo Dot - Our most popular smart speaker with a
                      fabric design.
                    - >-
                      Voice control your entertainment - Stream songs from
                      Amazon Music, Apple Music, Spotify.
                  description: >-
                    Echo Dot is our most compact smart speaker that fits
                    perfectly into small spaces.
                  main_image: https://m.media-amazon.com/images/I/714Rdc+abc.jpg
                  images:
                    - https://m.media-amazon.com/images/I/714Rdc+abc.jpg
                    - https://m.media-amazon.com/images/I/61abc+def.jpg
                  images_count: 6
                  videos: []
                  videos_count: 0
                  has_aplus_content: true
                  variants:
                    - asin: B08N5WRWNW
                      attributes:
                        Color: Charcoal
                      price:
                        value: 49.99
                        currency: USD
                        symbol: $
                        raw: $49.99
                      is_current: true
                    - asin: B08N5KWB9H
                      attributes:
                        Color: Glacier White
                      price:
                        value: 49.99
                        currency: USD
                        symbol: $
                        raw: $49.99
                      is_current: false
                  variant_asins:
                    - B08N5WRWNW
                    - B08N5KWB9H
                  categories:
                    - name: Electronics
                      link: https://www.amazon.com/electronics
                      category_id: '172282'
                    - name: Smart Home
                      link: https://www.amazon.com/smart-home
                      category_id: '6563140011'
                  bestsellers_rank:
                    - rank: 334
                      category: Electronics
                      link: https://www.amazon.com/gp/bestsellers/electronics
                    - rank: 1
                      category: Smart Speakers
                      link: >-
                        https://www.amazon.com/gp/bestsellers/electronics/smart-speakers
                  attributes:
                    Connectivity Technology: Wi-Fi, Bluetooth
                  specifications:
                    Item Weight: 12 ounces
                    Product Dimensions: 3.9 x 3.9 x 3.5 inches
                  dimensions: 3.9 x 3.9 x 3.5 inches
                  weight: 12 ounces
                  first_available: October 22, 2020
                  country_of_origin: China
                  buybox:
                    seller_name: Amazon.com
                    seller_id: ATVPDKIKX0DER
                    price:
                      value: 49.99
                      currency: USD
                      symbol: $
                      raw: $49.99
                    fulfillment: Amazon
                  sold_by: Amazon.com
                  ships_from: Amazon.com
                  fulfilled_by: Amazon
                  is_amazon_seller: true
                  badges:
                    amazons_choice: true
                    amazons_choice_keyword: smart speaker
                    best_seller: false
                    prime: true
                    climate_pledge_friendly: true
                  coupon:
                    text: Save 5% with coupon
                    discount: 5%
                  deal: null
                  delivery:
                    message: FREE delivery Tomorrow
                    date: '2026-06-04'
                    is_free: true
                  frequently_bought_together:
                    - B07FZ8S74R
                  also_bought:
                    - B07FZ8S74R
                    - B08C1W5N87
                  answered_questions: 1024
                  top_reviews:
                    - id: R1ABCDEF123456
                      title: Great little speaker
                      body: Sound quality is excellent for the size.
                      rating: 5
                      verified_purchase: true
                  scraped_utc: 1780531200
                  scraped_at: '2026-06-03T12:00:00Z'
components:
  schemas:
    Product:
      type: object
      properties:
        asin:
          type: string
        parent_asin:
          type: string
          nullable: true
        title:
          type: string
        link:
          type: string
        brand:
          type: string
          nullable: true
        manufacturer:
          type: string
          nullable: true
        model_number:
          type: string
          nullable: true
        price:
          $ref: '#/components/schemas/AmazonPrice'
        list_price:
          $ref: '#/components/schemas/AmazonPrice'
        savings_amount:
          $ref: '#/components/schemas/AmazonPrice'
        discount_percent:
          type: integer
          nullable: true
        rating:
          type: number
          nullable: true
        ratings_total:
          type: integer
          nullable: true
        rating_breakdown:
          type: object
          description: Percentage of ratings per star bucket (five_star ... one_star).
        bought_past_month:
          type: string
          nullable: true
        in_stock:
          type: boolean
        availability:
          type: string
          nullable: true
        feature_bullets:
          type: array
          items:
            type: string
        description:
          type: string
          nullable: true
        main_image:
          type: string
          nullable: true
        images:
          type: array
          items:
            type: string
        images_count:
          type: integer
        videos:
          type: array
          items:
            type: string
        videos_count:
          type: integer
        has_aplus_content:
          type: boolean
        variants:
          type: array
          items:
            type: object
          description: Variation children with asin, attributes, price, is_current.
        variant_asins:
          type: array
          items:
            type: string
        categories:
          type: array
          items:
            type: object
          description: Breadcrumb categories.
        bestsellers_rank:
          type: array
          items:
            type: object
          description: Best-seller ranks with rank, category, link.
        attributes:
          type: object
        specifications:
          type: object
        dimensions:
          type: string
          nullable: true
        weight:
          type: string
          nullable: true
        first_available:
          type: string
          nullable: true
        country_of_origin:
          type: string
          nullable: true
        buybox:
          type: object
          description: 'Buy Box winner: seller_name, seller_id, price, fulfillment.'
        sold_by:
          type: string
          nullable: true
        ships_from:
          type: string
          nullable: true
        fulfilled_by:
          type: string
          nullable: true
        is_amazon_seller:
          type: boolean
        badges:
          type: object
          description: >-
            amazons_choice, amazons_choice_keyword, best_seller, prime,
            climate_pledge_friendly.
        coupon:
          type: object
          nullable: true
        deal:
          type: object
          nullable: true
        delivery:
          type: object
          nullable: true
        frequently_bought_together:
          type: array
          items:
            type: string
        also_bought:
          type: array
          items:
            type: string
        answered_questions:
          type: integer
          nullable: true
        top_reviews:
          type: array
          items:
            $ref: '#/components/schemas/Review'
        scraped_utc:
          type: number
        scraped_at:
          type: string
    AmazonPrice:
      type: object
      properties:
        value:
          type: number
          nullable: true
          description: Numeric price value.
        currency:
          type: string
          nullable: true
          description: ISO 4217 currency code.
        symbol:
          type: string
          nullable: true
          description: Currency symbol (e.g. $, £, €).
        raw:
          type: string
          nullable: true
          description: Price exactly as displayed on Amazon.
    Review:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        body:
          type: string
        rating:
          type: integer
          description: Star rating left by the reviewer (1-5).
        date_raw:
          type: string
          nullable: true
        date_utc:
          type: number
          nullable: true
        date_at:
          type: string
          nullable: true
        review_country:
          type: string
          nullable: true
        is_global_review:
          type: boolean
        profile:
          type: object
          description: 'Reviewer profile: name, link, id, image.'
        verified_purchase:
          type: boolean
        vine_program:
          type: boolean
        helpful_votes:
          type: integer
          nullable: true
        variant:
          type: string
          nullable: true
        images:
          type: array
          items:
            type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````