# Amazon Product Images and Bullet Points by ASIN

**Use case:** 

The Content view is the listing copy: title, the bullet points as a list, the description, every image URL and the details table. Five ASINs here; a catalogue team pulls hundreds to audit titles and bullets against its own style guide or to seed a PIM. Do not republish images you do not own. Cost: 5 product rows at $0.004 = at most $0.02 a run.

## Input

```json
{
  "asins": [
    "B0CHWRXH8B",
    "B09B8V1LZ3",
    "B0BSHF7WHW",
    "B08JHCVHTY",
    "B0BZYCJK89"
  ],
  "domain": "com",
  "inStockOnly": false,
  "maxPrice": 0,
  "sessions": 4,
  "perIp": 0.5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "asin": {
    "label": "Asin",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "features": {
    "label": "Features",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "breadcrumbs": {
    "label": "Breadcrumbs",
    "format": "array"
  },
  "details": {
    "label": "Details",
    "format": "object"
  },
  "date_first_available": {
    "label": "Date first available",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper — Details, Prices & Availability by ASIN](https://apify.com/kestrel/amazon-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kestrel/amazon-product-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/kestrel/amazon-product-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`).
