Amazon Price and Buy Box Monitor
Pricing
from $4.00 / 1,000 actionable insights
Amazon Price and Buy Box Monitor
Turn product or offer records into ranked, evidence-backed commerce opportunitys.
Amazon Price and Buy Box Monitor
Pricing
from $4.00 / 1,000 actionable insights
Turn product or offer records into ranked, evidence-backed commerce opportunitys.
You can access the Amazon Price and Buy Box Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "sku": "SKU-DEMO-001",14 "title": "Portable Espresso Maker",15 "brand": "Nomad Brew",16 "price": 79.99,17 "listPrice": 129.99,18 "currency": "USD",19 "inStock": true,20 "seller": "Nomad Brew",21 "rating": 4.7,22 "reviewsCount": 3100,23 "salesRank": 42,24 "discount": 38,25 "observedAt": "2026-08-02T10:00:00Z",26 "productWorkflow": "amazon-price-buybox-monitor"27 }28 ],29 "previousRecords": [30 {31 "sku": "SKU-DEMO-001",32 "title": "Portable Espresso Maker",33 "brand": "Nomad Brew",34 "price": 109.99,35 "listPrice": 129.99,36 "currency": "USD",37 "inStock": false,38 "seller": "Nomad Brew",39 "rating": 4.6,40 "reviewsCount": 2750,41 "salesRank": 81,42 "discount": 15,43 "observedAt": "2026-07-26T10:00:00Z",44 "productWorkflow": "amazon-price-buybox-monitor"45 }46 ]47};48
49// Run the Actor and wait for it to finish50const run = await client.actor("night111/amazon-price-buybox-monitor").call(input);51
52// Fetch and print Actor results from the run's dataset (if any)53console.log('Results from dataset');54console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);55const { items } = await client.dataset(run.defaultDatasetId).listItems();56items.forEach((item) => {57 console.dir(item);58});59
60// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Amazon Price and Buy Box Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: