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

# Amazon product details

> The full detail page for specific Amazon ASINs or product URLs: title, brand, price and list price, rating count and star distribution, availability, bullet poi

The full detail page for specific Amazon ASINs or product URLs: title, brand, price and list price, rating count and star distribution, availability, bullet points, long description, best sellers rank, breadcrumbs, seller, model number and image URLs.

<Note>Use when you already have ASINs or Amazon product URLs and need the whole listing: pricing, specs, ranking and imagery. Run amazon.search first if you still need to find the ASINs.</Note>

## Price

**\$0.0045 per result.** That is the rate you pay for each result the call returns, so the total depends on how many it produces.

Billing follows actual usage, so a call that returns fewer results costs less. `discover` and `inspect` also return a ceiling for your specific request, which is a maximum you will never be charged above.

## Input

| Field    | Type    | Required | Notes                                                                                                                                                                                                                                                    |
| -------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Params` | `array` | yes      | Amazon ASINs or full product URLs, for example B077Z99YGY or [https://www.amazon.com/dp/B077Z99YGY](https://www.amazon.com/dp/B077Z99YGY). Mixing both forms is fine. Exactly one billed result per entry, so cost scales with the length of this array. |

<Note>
  Goro forwards your input to the underlying tool unchanged, so any field the
  tool accepts works here even if it is not listed above.
</Note>

## Example

```bash theme={null}
curl -X POST https://api.usegoro.ai/v1/run \
  -H "Authorization: Bearer $GORO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"amazon.product","input":{"Params":["example"]}}'
```

## Response

One row of the response. Values are illustrative.

```json theme={null}
{
  "asin": "B07CMS5Q6P",
  "price": "$39.99",
  "title": "Logitech G305 Lightspeed Wireless Gaming Mouse - Black | Hero Sensor 12, Lightspeed 1ms Wireless, Up to 250h on 1xaa, 6 Programmable Buttons, 99g with Battery",
  "images": [
    "https://m.media-amazon.com/images/I/31zy93Vq31L.jpg",
    "https://m.media-amazon.com/images/I/41jBvXcD7eL.jpg"
  ],
  "about_item": "The next-generation optical HERO sensor delivers incredible performance and up to 10x the power efficiency over previous generations.",
  "brand_name": "Logitech G",
  "list_price": "$49.99",
  "breadcrumbs": "Video Games > PC > Accessories > Gaming Mice",
  "product_url": "https://www.amazon.com/dp/B07CMS5Q6P",
  "scrape_time": "2026-07-30 22:36",
  "seller_name": "Amazon.com",
  "availability": "In Stock",
  "manufacturer": "Logitech",
  "model_number": "910-005280",
  "rating_count": "39211",
  "rating_stars": "4.6 out of 5 stars",
  "delivery_date": "",
  "brand_page_url": "",
  "default_variant": [
    "style:Classic",
    "color:Black"
  ],
  "seller_page_url": "",
  "recent_purchases": "10K+ bought",
  "best_sellers_rank": "#7 in Video Games  #1 in PC Gaming Mice  #1 in Mac Gaming Mice",
  "product_description": "Play advanced without wires or limits. The Logitech G305 LIGHTSPEED is a gaming wireless mouse designed for competition.",
  "rating_distribution": {
    "1": "2%",
    "2": "2%",
    "3": "5%",
    "4": "13%",
    "5": "78%"
  },
  "fastest_delivery_date": "",
  "customer_review_summary": ""
}
```
