# Amazon price tracking API by keyword

**Use case:** 

Amazon price tracking API that returns current price, list price and discount per product. Re-run on a schedule to track changes.

## Input

```json
{
  "keywords": [
    "iphone 15 case",
    "airpods pro",
    "kindle paperwhite"
  ],
  "domain": "com",
  "maxResults": 100
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "price": {
    "label": "Current price",
    "format": "number"
  },
  "currency": {
    "label": "Currency (ISO 4217)",
    "format": "string"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "isPrime": {
    "label": "Prime eligible",
    "format": "boolean"
  },
  "isSponsored": {
    "label": "Sponsored placement",
    "format": "boolean"
  },
  "badgeText": {
    "label": "Badge",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace code",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search keyword",
    "format": "string"
  },
  "page": {
    "label": "Result page number",
    "format": "integer"
  },
  "positionOnPage": {
    "label": "Position on page",
    "format": "integer"
  },
  "organicRank": {
    "label": "Organic rank",
    "format": "integer"
  },
  "globalPosition": {
    "label": "Global position",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scrape timestamp (UTC)",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Listings Scraper 2026](https://apify.com/devcake/amazon-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devcake/amazon-listings-scraper) to learn more, explore other use cases, and run it yourself.