# Amazon Product Scraper & Price Tracker (`aiscraperdev/amazon-product-scraper`) Actor

Scrape Amazon products by keyword, ASIN, or URL. Track real-time
prices, discounts, Best Seller Rankings, coupons, Prime status,
and stock availability. Supports US, UK, IN, DE, CA and AU
marketplaces. No login required.

- **URL**: https://apify.com/aiscraperdev/amazon-product-scraper.md
- **Developed by:** [Randeep Dhillon](https://apify.com/aiscraperdev) (community)
- **Categories:** E-commerce, Developer tools, Automation
- **Stats:** 3 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $4.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Amazon Price Tracker & Product Scraper

Extract structured product data, real-time prices, discounts, coupon details, and Best Seller Rankings from Amazon at scale. Search by keyword, ASIN, or paste any Amazon URL directly. Supports 6 regional Amazon marketplaces. No login or Amazon account required.

> ⚡ **The most complete Amazon product data on Apify** — captures Best Seller Rankings, coupon details, Prime eligibility, seller names, discount percentages, and availability status in one clean output. Ready to drop into Google Sheets, Airtable, or your pricing dashboard.

---

### What you can do with this scraper

- **Price monitoring** — track competitor prices daily and get alerted when they change
- **Dropshipping research** — find winning products using Best Seller Rank and discount signals
- **Competitive intelligence** — monitor competitor pricing strategies across categories
- **Amazon FBA research** — identify high-demand, low-competition products by BSR
- **Price comparison** — compare the same product across multiple Amazon marketplaces (US, UK, IN, DE, CA, AU)
- **Coupon tracking** — find active coupon deals and Prime Savings before they expire
- **Inventory monitoring** — track stock availability across multiple ASINs

---

### How to use

#### Step 1 — Add your search queries

The `Search Queries` field accepts three types of input (you can mix them in one run):

| Input type | Example |
|---|---|
| Keyword | `laptop stand`, `wireless keyboard`, `protein powder` |
| ASIN | `B09XYZ1234`, `B07WJ5D3H4` |
| Amazon URL | `https://www.amazon.com/dp/B09XYZ1234` |
| Amazon search URL | `https://www.amazon.com/s?k=laptop+stand` |

You can add multiple queries at once — the actor scrapes all of them in a single run.

#### Step 2 — Set your filters

| Filter | Options | Default |
|---|---|---|
| **Amazon Country** | US / UK / IN / DE / CA / AU | `US` |
| **Max Products** | Any number, `-1` for all | `5` |
| **Sort By** | Relevance / Price Low-High / Price High-Low / Avg Review / Newest / Best Sellers | `Relevance` |
| **Min Price** | Any number (optional) | none |
| **Max Price** | Any number (optional) | none |
| **Include Sponsored** | true / false | `false` |
| **Scrape Variants** | true / false (size, colour) | `false` |
| **Proxy** | Residential (recommended) / Datacenter | Residential |

#### Step 3 — Run and export

Click **Start** and wait for the run to complete. Download your results as **JSON, CSV, or Excel** — ready to use in Google Sheets, Airtable, n8n, Make, or Zapier.

---

### Sample output

```json
{
  "asin": "B07WJ5D3H4",
  "title": "Amazon Basics Wired QWERTY Keyboard, Works with Windows, Full-Sized, Black",
  "brand": "Amazon Basics",
  "category": "Electronics",
  "subcategory": "Computer Keyboards",
  "price": 11.70,
  "currency": "USD",
  "price_formatted": "$11.70",
  "original_price": 21.99,
  "discount_percentage": 47,
  "discount_amount": 10.29,
  "is_on_sale": true,
  "coupon_available": true,
  "coupon_value": "Save 10%",
  "coupon_type": "Prime Savings",
  "availability": "In Stock",
  "is_in_stock": true,
  "prime_eligible": true,
  "fulfilled_by_amazon": true,
  "seller_name": "Amazon.com",
  "rating": 4.5,
  "ratings_count": 9579,
  "best_sellers_rank": [
    { "rank": 1, "category": "Computer Keyboards" },
    { "rank": 521, "category": "Our Brands" }
  ],
  "amazon_choice": false,
  "is_sponsored": false,
  "product_url": "https://www.amazon.com/dp/B07WJ5D3H4",
  "scraped_at": "2026-05-11T09:07:03.921Z"
}
````

***

### Output fields reference

#### Product identity

| Field | Description |
|---|---|
| `asin` | Amazon Standard Identification Number |
| `title` | Full product title |
| `brand` | Brand name (cleaned — no "Visit the Store") |
| `category` | Top-level category e.g. `Electronics` |
| `subcategory` | More specific category from BSR |
| `product_url` | Full canonical Amazon product URL |
| `is_sponsored` | `true` if the result is a paid ad |
| `scraped_at` | ISO timestamp of when data was collected |

#### Pricing

| Field | Description |
|---|---|
| `price` | Current price (numeric) |
| `currency` | `USD`, `GBP`, `INR`, `EUR`, `CAD`, `AUD` |
| `price_formatted` | e.g. `$27.99` |
| `original_price` | Strike-through price before discount |
| `discount_percentage` | e.g. `47` for 47% off |
| `discount_amount` | Savings in currency e.g. `10.29` |
| `is_on_sale` | `true` if a discount is active |

#### Coupons & Deals

| Field | Description |
|---|---|
| `coupon_available` | `true` if a coupon is active |
| `coupon_value` | e.g. `"Save 15%"` or `"Save $5"` |
| `coupon_type` | `"standard"`, `"multi_item"`, `"Prime Savings"` |
| `coupon_details` | Full raw coupon text from Amazon |
| `deal_type` | `"Lightning Deal"`, `"Deal of the Day"`, `null` |

#### Availability & Fulfilment

| Field | Description |
|---|---|
| `availability` | `"In Stock"`, `"Out of Stock"`, `"Only 3 left"` |
| `is_in_stock` | `true` / `false` |
| `prime_eligible` | `true` if eligible for Prime delivery |
| `fulfilled_by_amazon` | `true` if FBA, `false` if FBM |
| `seller_name` | Who is selling e.g. `"Amazon.com"`, `"MOFii-US"` |

#### Ratings

| Field | Description |
|---|---|
| `rating` | Star rating e.g. `4.5` |
| `ratings_count` | Total number of star ratings |

#### Competitive Intelligence

| Field | Description |
|---|---|
| `best_sellers_rank` | Array of rank + category objects |
| `amazon_choice` | `true` if Amazon's Choice badge is present |
| `frequently_bought_together` | Array of ASINs bought with this product |
| `date_first_available` | When the product was first listed |

***

### Input schema reference

```json
{
  "searchQueries": ["wireless keyboard", "B07WJ5D3H4"],
  "country": "US",
  "maxProducts": 20,
  "sortBy": "best_sellers",
  "minPrice": 10,
  "maxPrice": 100,
  "scrapeSponsored": false,
  "scrapeVariants": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

***

### Supported Amazon marketplaces

| Country code | Marketplace |
|---|---|
| `US` | amazon.com |
| `UK` | amazon.co.uk |
| `IN` | amazon.in |
| `DE` | amazon.de |
| `CA` | amazon.ca |
| `AU` | amazon.com.au |

***

### Who uses this

- **Amazon sellers** monitoring competitor prices before adjusting their own listings
- **Dropshippers** finding profitable products using BSR and discount signals
- **Price comparison sites** aggregating product data across marketplaces
- **E-commerce brands** tracking their own product visibility and pricing
- **Retail analysts** monitoring category pricing trends
- **Bargain hunters** tracking coupon deals and Lightning Deals

***

### Pricing

This actor uses **Pay-Per-Result** pricing — you only pay for products actually scraped.

**$3.00 per 1,000 products**

***

### Tips for best results

- **Always use residential proxies** — Amazon blocks datacenter IPs heavily. The default proxy setting is already configured to use residential proxies.
- **`best_sellers_rank` is your most powerful field** — a product ranked #1 in a category is confirmed demand. Sort your output by rank to find the best products instantly.
- **Discount percentage over 40%** — treat with caution, Amazon sometimes uses inflated original prices. Cross-check with `date_first_available` and `ratings_count` for credibility.
- **Use `sortBy: "best_sellers"`** when doing product research — you get the top-performing products in a category immediately.
- **Set `maxProducts: -1`** carefully — popular keywords like `"laptop"` can return hundreds of pages.
- **Track the same ASIN daily** by inputting it directly — price changes are visible by comparing `scraped_at` timestamps across runs.

***

### Limitations

- **Amazon login required data** — order history, personalised recommendations, and wish lists are not accessible without a logged-in account.
- **Regional pricing** — prices vary by location even within the same marketplace. Results reflect the default region for each marketplace.
- **Dynamic pricing** — Amazon prices can change multiple times per day. Always note the `scraped_at` timestamp.
- **Frequently bought together** — this section loads dynamically and may not always populate depending on page load timing.
- **Amazon blocks** — despite residential proxies, occasional blocks may occur. The actor retries automatically up to 3 times per product.

***

### Related scrapers

- Meta Ads Library Scraper
- Google Ads Transparency Scraper
- TikTok Ads Library Scraper

# Actor input Schema

## `searchQueries` (type: `array`):

Enter keywords (e.g., 'laptop stand'), direct ASINs (e.g., 'B09XYZ1234'), or full Amazon URLs.

## `country` (type: `string`):

Select the regional Amazon marketplace.

## `maxProducts` (type: `integer`):

Maximum number of products to scrape (-1 for all).

## `sortBy` (type: `string`):

Choose how the Amazon search results should be ordered.

## `minPrice` (type: `number`):

Minimum price filter for the products (leave empty for no minimum).

## `maxPrice` (type: `number`):

Maximum price filter for the products (leave empty for no maximum).

## `scrapeSponsored` (type: `boolean`):

If enabled, the scraper will also collect sponsored/ad products from the search results.

## `scrapeVariants` (type: `boolean`):

If enabled, the scraper will extract all available size and color variants for each product.

## `proxyConfiguration` (type: `object`):

Residential proxies are highly recommended for Amazon.

## Actor input object example

```json
{
  "searchQueries": [
    "laptop stand"
  ],
  "country": "US",
  "maxProducts": 20,
  "sortBy": "relevance",
  "scrapeSponsored": false,
  "scrapeVariants": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "laptop stand"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("aiscraperdev/amazon-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQueries": ["laptop stand"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("aiscraperdev/amazon-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "laptop stand"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call aiscraperdev/amazon-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=aiscraperdev/amazon-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Product Scraper & Price Tracker",
        "description": "Scrape Amazon products by keyword, ASIN, or URL. Track real-time \nprices, discounts, Best Seller Rankings, coupons, Prime status, \nand stock availability. Supports US, UK, IN, DE, CA and AU \nmarketplaces. No login required.",
        "version": "0.0",
        "x-build-id": "76LqsqdIBZhbXb23E"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/aiscraperdev~amazon-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-aiscraperdev-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/aiscraperdev~amazon-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-aiscraperdev-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/aiscraperdev~amazon-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-aiscraperdev-amazon-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "searchQueries",
                    "country"
                ],
                "properties": {
                    "searchQueries": {
                        "title": "Search Queries (Keywords, ASINs, or URLs)",
                        "type": "array",
                        "description": "Enter keywords (e.g., 'laptop stand'), direct ASINs (e.g., 'B09XYZ1234'), or full Amazon URLs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "Amazon Country",
                        "enum": [
                            "US",
                            "UK",
                            "IN",
                            "DE",
                            "CA",
                            "AU"
                        ],
                        "type": "string",
                        "description": "Select the regional Amazon marketplace.",
                        "default": "US"
                    },
                    "maxProducts": {
                        "title": "Max Products",
                        "type": "integer",
                        "description": "Maximum number of products to scrape (-1 for all).",
                        "default": 20
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "relevance",
                            "price_low_to_high",
                            "price_high_to_low",
                            "avg_customer_review",
                            "newest_arrivals",
                            "best_sellers"
                        ],
                        "type": "string",
                        "description": "Choose how the Amazon search results should be ordered.",
                        "default": "relevance"
                    },
                    "minPrice": {
                        "title": "Min Price (Optional)",
                        "type": "number",
                        "description": "Minimum price filter for the products (leave empty for no minimum)."
                    },
                    "maxPrice": {
                        "title": "Max Price (Optional)",
                        "type": "number",
                        "description": "Maximum price filter for the products (leave empty for no maximum)."
                    },
                    "scrapeSponsored": {
                        "title": "Include Sponsored Products",
                        "type": "boolean",
                        "description": "If enabled, the scraper will also collect sponsored/ad products from the search results.",
                        "default": false
                    },
                    "scrapeVariants": {
                        "title": "Scrape Size/Color Variants",
                        "type": "boolean",
                        "description": "If enabled, the scraper will extract all available size and color variants for each product.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Residential proxies are highly recommended for Amazon."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
