# Pull full product details for a list of ASINs

**Use case:** 

Give it ASINs or full product URLs and get the complete record for each one: title, brand, price, rating, review count, availability, Best Sellers Rank, feature bullets, every image and the full specification table. A product URL's marketplace overrides the marketplace field, so you can mix countries in one list.

## Input

```json
{
  "mode": "product",
  "search": [
    "wireless headphones",
    "yoga mat"
  ],
  "asins": [
    "B09XS7JWHH",
    "B0CHX3QBCH",
    "B07FZ8S74R"
  ],
  "category": [
    "electronics",
    "books"
  ],
  "sellerIds": [
    "A2L77EE7U53NWQ"
  ],
  "marketplace": "com",
  "maxItems": 10,
  "maxPagesPerQuery": 1,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Item type",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper - Search, Best Sellers](https://apify.com/automation_craft/amazon-data-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation_craft/amazon-data-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automation_craft/amazon-data-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
