# Amazon Product Scraper — Prices, Ratings, Reviews & ASIN Data (`maged120/amazon-scraper`) Actor

Scrape Amazon product listings by search query or ASIN. Returns title, price, seller, rating, review count, availability, and product images.

- **URL**: https://apify.com/maged120/amazon-scraper.md
- **Developed by:** [Maged](https://apify.com/maged120) (community)
- **Categories:** Automation, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $18.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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

### What does Amazon Product Scraper do?

**Amazon Product Scraper** extracts product listings from Amazon by search query or ASIN — titles, prices, ratings, review counts, sellers, availability, and product images — all without an Amazon Product Advertising API key.

This Actor runs on the [Apify platform](https://apify.com). Use it for price monitoring, product research, competitive analysis, or building Amazon product datasets.

### Why use Amazon Product Scraper?

- **No Amazon API key** — no Product Advertising API approval or associate account needed
- **Search or ASIN** — scrape search results or specific product pages
- **Full product data** — price, rating, review count, seller, availability, images
- **Price monitoring** — track competitor pricing changes on a schedule
- **Market research** — analyze product trends, pricing strategies, and category competition

### How to use Amazon Product Scraper

1. Open the Actor and click **Try for free**
2. Enter search queries or ASINs in the input
3. Set filters: category, sort order, max results
4. Click **Start** — product data appears in the Output tab
5. Download as JSON, CSV, or Excel

### Input

```json
{
  "queries": ["wireless earbuds under $50", "standing desk"],
  "asins": ["B09N4W6S8Z", "B07XJ8C8F5"],
  "maxResults": 50,
  "marketplace": "us"
}
````

| Field | Type | Description | Default |
|---|---|---|---|
| `queries` | array | Product search queries | `[]` |
| `asins` | array | Specific Amazon ASINs to scrape | `[]` |
| `maxResults` | integer | Max results per query | `50` |
| `marketplace` | string | Amazon marketplace: `us`, `uk`, `de`, `fr`, `ca`, etc. | `us` |

### Output

```json
{
  "asin": "B09N4W6S8Z",
  "title": "Sony WF-1000XM5 Wireless Earbuds",
  "url": "https://www.amazon.com/dp/B09N4W6S8Z",
  "price": 249.99,
  "originalPrice": 299.99,
  "currency": "USD",
  "rating": 4.4,
  "reviewCount": 18420,
  "availability": "In Stock",
  "seller": "Sold by Amazon",
  "brand": "Sony",
  "images": ["https://m.media-amazon.com/images/..."],
  "badge": "Amazon's Choice"
}
```

### Output fields

| Field | Type | Description |
|---|---|---|
| `asin` | string | Amazon ASIN |
| `title` | string | Product title |
| `price` | number | Current price |
| `originalPrice` | number | Original/list price |
| `rating` | number | Average star rating |
| `reviewCount` | number | Total review count |
| `availability` | string | Stock status |
| `seller` | string | Seller name |
| `images` | array | Product image URLs |
| `badge` | string | Special badges (Best Seller, Amazon's Choice) |

### Cost

| Volume | Estimated cost |
|---|---|
| 500 products | ~$0.10–$0.50 |
| 5,000 products | ~$1.00–$5.00 |

### Tips

- Use specific ASINs for precise price monitoring — more reliable than search queries
- Schedule daily runs to track price changes and stock availability over time
- Change `marketplace` to scrape Amazon.co.uk, Amazon.de, etc. for international pricing

### FAQ

**Does this work on all Amazon marketplaces?**
Yes — set the `marketplace` field to the country code (us, uk, de, fr, ca, jp, etc.).

**Is this Actor maintained?**
Yes. Report bugs or feature requests in the Issues tab.

**Need help or have questions?**
Open an issue in the Issues tab or reach out on Discord: **maged03211**

# Actor input Schema

## `keywords` (type: `array`):

Keywords to search on Amazon. One keyword per entry.

## `startUrls` (type: `array`):

Amazon search, category, or product page URLs to scrape directly.

## `asins` (type: `array`):

Amazon Standard Identification Numbers to scrape directly. One per line.

## `amazonDomain` (type: `string`):

Which Amazon marketplace to scrape.

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

Sort order for search results.

## `department` (type: `string`):

Limit search to a specific Amazon department.

## `minPrice` (type: `integer`):

Minimum product price filter (in marketplace currency). Leave empty for no minimum.

## `maxPrice` (type: `integer`):

Maximum product price filter (in marketplace currency). Leave empty for no maximum.

## `primeOnly` (type: `boolean`):

Only return products eligible for Amazon Prime shipping.

## `maxResults` (type: `integer`):

Maximum total dataset items to push (0 = unlimited).

## `maxPages` (type: `integer`):

Maximum search result pages per keyword (each page ~20 results).

## `scrapeProductDetails` (type: `boolean`):

Visit each product page: description, specs, images, BSR, brand, availability, variations.

## `scrapeReviews` (type: `boolean`):

Scrape customer reviews for each product.

## `maxReviewsPerProduct` (type: `integer`):

Maximum customer reviews per product (0 = unlimited).

## `scrapeOffers` (type: `boolean`):

Scrape all seller offers per product (price, condition, seller, shipping).

## `outputSearchResults` (type: `boolean`):

Push one dataset row per search result (quick data: title, price, rating, thumbnail).

## `outputProducts` (type: `boolean`):

Push one dataset row per full product detail page.

## `outputReviews` (type: `boolean`):

Push one dataset row per customer review.

## `outputOffers` (type: `boolean`):

Push one dataset row per third-party seller offer.

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

Proxy settings. Residential proxy is strongly recommended for Amazon.

## Actor input object example

```json
{
  "keywords": [
    "wireless earbuds"
  ],
  "amazonDomain": "amazon.com",
  "sortBy": "relevanceblender",
  "department": "aps",
  "maxPrice": 200,
  "primeOnly": false,
  "maxResults": 200,
  "maxPages": 1,
  "scrapeProductDetails": false,
  "scrapeReviews": false,
  "maxReviewsPerProduct": 20,
  "scrapeOffers": false,
  "outputSearchResults": true,
  "outputProducts": true,
  "outputReviews": true,
  "outputOffers": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "keywords": [
        "wireless earbuds"
    ],
    "amazonDomain": "amazon.com",
    "maxResults": 200,
    "maxPages": 1,
    "maxReviewsPerProduct": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("maged120/amazon-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 = {
    "keywords": ["wireless earbuds"],
    "amazonDomain": "amazon.com",
    "maxResults": 200,
    "maxPages": 1,
    "maxReviewsPerProduct": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("maged120/amazon-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 '{
  "keywords": [
    "wireless earbuds"
  ],
  "amazonDomain": "amazon.com",
  "maxResults": 200,
  "maxPages": 1,
  "maxReviewsPerProduct": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call maged120/amazon-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Product Scraper — Prices, Ratings, Reviews & ASIN Data",
        "description": "Scrape Amazon product listings by search query or ASIN. Returns title, price, seller, rating, review count, availability, and product images.",
        "version": "1.0",
        "x-build-id": "lHBnbhpb8LfOC9WZX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/maged120~amazon-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-maged120-amazon-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/maged120~amazon-scraper/runs": {
            "post": {
                "operationId": "runs-sync-maged120-amazon-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/maged120~amazon-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-maged120-amazon-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",
                "properties": {
                    "keywords": {
                        "title": "Search Keywords",
                        "type": "array",
                        "description": "Keywords to search on Amazon. One keyword per entry.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Amazon search, category, or product page URLs to scrape directly.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "asins": {
                        "title": "Product ASINs",
                        "type": "array",
                        "description": "Amazon Standard Identification Numbers to scrape directly. One per line.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "amazonDomain": {
                        "title": "Amazon Marketplace",
                        "enum": [
                            "amazon.com",
                            "amazon.co.uk",
                            "amazon.de",
                            "amazon.fr",
                            "amazon.it",
                            "amazon.es",
                            "amazon.ca",
                            "amazon.co.jp",
                            "amazon.com.au",
                            "amazon.com.br",
                            "amazon.in",
                            "amazon.com.mx",
                            "amazon.eg",
                            "amazon.nl",
                            "amazon.pl",
                            "amazon.se",
                            "amazon.sg",
                            "amazon.sa",
                            "amazon.ae",
                            "amazon.com.tr"
                        ],
                        "type": "string",
                        "description": "Which Amazon marketplace to scrape.",
                        "default": "amazon.com"
                    },
                    "sortBy": {
                        "title": "Sort Results By",
                        "enum": [
                            "relevanceblender",
                            "price-asc-rank",
                            "price-desc-rank",
                            "review-rank",
                            "date-range-rank",
                            "exact-aware-popularity-rank"
                        ],
                        "type": "string",
                        "description": "Sort order for search results.",
                        "default": "relevanceblender"
                    },
                    "department": {
                        "title": "Department / Category",
                        "enum": [
                            "aps",
                            "electronics",
                            "stripbooks-intl-ship",
                            "apparel",
                            "automotive",
                            "baby-products",
                            "beauty",
                            "computers",
                            "garden",
                            "grocery",
                            "health-personal-care",
                            "home-garden",
                            "industrial",
                            "digital-text",
                            "movies-tv",
                            "music",
                            "musical-instruments",
                            "office-products",
                            "pets",
                            "photo",
                            "software",
                            "sporting",
                            "tools",
                            "toys-and-games",
                            "videogames",
                            "handmade"
                        ],
                        "type": "string",
                        "description": "Limit search to a specific Amazon department.",
                        "default": "aps"
                    },
                    "minPrice": {
                        "title": "Minimum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum product price filter (in marketplace currency). Leave empty for no minimum."
                    },
                    "maxPrice": {
                        "title": "Maximum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum product price filter (in marketplace currency). Leave empty for no maximum.",
                        "default": 200
                    },
                    "primeOnly": {
                        "title": "Prime Eligible Only",
                        "type": "boolean",
                        "description": "Only return products eligible for Amazon Prime shipping.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total dataset items to push (0 = unlimited).",
                        "default": 200
                    },
                    "maxPages": {
                        "title": "Max Search Pages",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Maximum search result pages per keyword (each page ~20 results).",
                        "default": 1
                    },
                    "scrapeProductDetails": {
                        "title": "Scrape Full Product Details",
                        "type": "boolean",
                        "description": "Visit each product page: description, specs, images, BSR, brand, availability, variations.",
                        "default": false
                    },
                    "scrapeReviews": {
                        "title": "Scrape Customer Reviews",
                        "type": "boolean",
                        "description": "Scrape customer reviews for each product.",
                        "default": false
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max Reviews Per Product",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum customer reviews per product (0 = unlimited).",
                        "default": 20
                    },
                    "scrapeOffers": {
                        "title": "Scrape Third-Party Offers",
                        "type": "boolean",
                        "description": "Scrape all seller offers per product (price, condition, seller, shipping).",
                        "default": false
                    },
                    "outputSearchResults": {
                        "title": "Output Search Result Rows",
                        "type": "boolean",
                        "description": "Push one dataset row per search result (quick data: title, price, rating, thumbnail).",
                        "default": true
                    },
                    "outputProducts": {
                        "title": "Output Full Product Rows",
                        "type": "boolean",
                        "description": "Push one dataset row per full product detail page.",
                        "default": true
                    },
                    "outputReviews": {
                        "title": "Output Review Rows",
                        "type": "boolean",
                        "description": "Push one dataset row per customer review.",
                        "default": true
                    },
                    "outputOffers": {
                        "title": "Output Offer Rows",
                        "type": "boolean",
                        "description": "Push one dataset row per third-party seller offer.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Residential proxy is strongly 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
