# Amazon Price Tracking: 25 ASINs Every Morning

**Use case:** 

Twenty-five ASINs across electronics, kitchen and beauty in one run, the Prices view showing buybox price, list price, currency and stock flag per row. Schedule it every morning: asin plus fetched_at is the join key, and a month of runs is a price history you own rather than a chart you rent. Cost: 25 product rows at $0.004 = at most $0.10 a run.

## Input

```json
{
  "asins": [
    "B08JHCVHTY",
    "B0DCH8VDXF",
    "B0GJTFXNRX",
    "B0DGHMNQ5Z",
    "B0FQFB8FMG",
    "B0F7Z4QZTT",
    "B0DJGDC3BD",
    "B0DXXYS4BJ",
    "B0BZYCJK89",
    "B0CQVWT2NH",
    "B0DF44GN8Y",
    "B0113UZJE2",
    "B0CP9YB3Q4",
    "B08CVV7Z5H",
    "B00S93EQUK",
    "B0CYJBB2JQ",
    "B0BZGRCBY4",
    "B09V7Z4TJG",
    "B09541P9WH",
    "B07PBXXNCY",
    "B00U2VQZDS",
    "B074PVTPBW",
    "B071914GGL",
    "B08KT2Y49F",
    "B09542G9ZN"
  ],
  "domain": "com",
  "inStockOnly": false,
  "maxPrice": 0,
  "sessions": 4,
  "perIp": 0.5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "asin": {
    "label": "Asin",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "price_display": {
    "label": "Price display",
    "format": "string"
  },
  "list_price": {
    "label": "List price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "in_stock": {
    "label": "In stock",
    "format": "boolean"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "fetched_at": {
    "label": "Fetched at",
    "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`).
