# Amazon Data Scraper — Search, Products, Best Sellers & More (`automation_craft/amazon-data-scraper`) Actor

Scrape Amazon without code: search results, full product details, best sellers, new releases, seller storefronts, and keyword ideas — all in one actor, across 20+ countries. Clean JSON/CSV/Excel. Fast, and you pay only for the results you actually get.

- **URL**: https://apify.com/automation\_craft/amazon-data-scraper.md
- **Developed by:** [Automation Craft](https://apify.com/automation_craft) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

Pay per event

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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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 Data Scraper — Search, Products, Best Sellers & More

Get Amazon data as a clean spreadsheet or JSON file — **no coding needed**. Pick what you want (a **mode**), enter a keyword / product / category, and press start. Works on **20+ Amazon country sites**, and you **only pay for results you actually get** — if Amazon blocks a page, it costs you nothing.

Other tools make you rent a separate scraper for search, another for products, another for best sellers. **This is one tool that does all six.**

### ✅ What this can do

Pull Amazon's **public catalogue data** — the things you can see on Amazon without logging in:
- product listings and prices, ratings and review **counts**, images, brand, best-seller rank, availability, seller info, keyword ideas, and more.

### ❌ What this cannot do

- **It does not download the text of customer reviews.** Amazon hides full reviews behind a login, so no tool can reliably scrape review text. You **do** get each product's **star rating** and **number of reviews** — just not the written review paragraphs. (If you only need ratings + counts, this tool has you covered.)
- It does not access anything private (orders, seller dashboards, buyer info) — only public pages.

### Modes (pick one per run)

| Mode | What you get | Give it |
|---|---|---|
| **Search** | Product cards for a keyword: title, price, list price, rating, review count, image, Prime, sponsored flag, ASIN | **Search terms** |
| **Product detail** | Everything for specific products: title, brand, price, rating, review count, availability, Best Sellers Rank, feature bullets, all images, full spec table | **ASINs or product URLs** |
| **Best sellers** | A category's Best Sellers ranking (rank, ASIN, title, price, rating, review count) | **Category** |
| **New releases** | A category's newest products | **Category** |
| **Seller storefront** | Every product a seller lists | **Seller IDs** |
| **Keyword suggestions** | Amazon's autocomplete completions for a prefix (great for keyword research / PPC) | **Search terms** |

### Quick examples

**Search amazon.com for "wireless headphones" (first 2 pages):**
```json
{ "mode": "search", "search": ["wireless headphones"], "marketplace": "com", "maxPagesPerQuery": 2 }
````

**Full detail for two products:**

```json
{ "mode": "product", "asins": ["B09XS7JWHH", "https://www.amazon.co.uk/dp/B08N5WRWNW"] }
```

**Top 100 best-selling electronics in India:**

```json
{ "mode": "bestsellers", "category": ["electronics"], "marketplace": "in", "maxItems": 100, "maxPagesPerQuery": 4 }
```

**Every product from a seller's storefront:**

```json
{ "mode": "seller", "sellerIds": ["A2L77EE7U53NWQ"], "marketplace": "com", "maxPagesPerQuery": 5 }
```

**Keyword ideas for PPC:**

```json
{ "mode": "suggestions", "search": ["wireless head", "yoga"], "marketplace": "com" }
```

### Input fields

- **`mode`** — which data type to scrape (see the table). Each mode uses one input field:
  - Search / Keyword suggestions → **`search`** (list of keywords)
  - Product detail → **`asins`** (ASINs or full product URLs; a URL's marketplace wins)
  - Best sellers / New releases → **`category`** (a slug like `electronics`, `books`, `toys-and-games`, or a full best-sellers URL)
  - Seller storefront → **`sellerIds`** (the value after `seller=`/`me=` in a storefront URL)
- **`marketplace`** — which Amazon site (`com`, `co.uk`, `de`, `in`, … 20 total). A full product URL overrides it.
- **`maxItems`** — hard cap on total result rows (cost control).
- **`maxPagesPerQuery`** — how many pages to follow for Search / Seller / Best sellers / New releases (each page is ~16–60 items). Ignored by Product detail and Keyword suggestions.
- **`maxConcurrency`** — parallel requests.
- **`proxyConfiguration`** — residential proxy by default (strongly recommended; Amazon blocks datacenter IPs).

### Output

One row per result in the dataset, tagged with `type` (`search` / `product` / `bestsellers` / `new-release` / `seller` / `suggestion`) so you can filter mixed exports. Prices are returned both as a number (`price`) and with the `currency` symbol; ratings as a 0–5 number; review counts as integers.

Filter the dataset view by `type` for a clean per-mode table, or export the whole run as JSON/CSV/Excel.

### Reliability

- **HTTP-based** (no browser) → fast and cheap.
- Every request is **isolated** — one product failing never corrupts another's result (a common bug in other Amazon actors).
- Amazon occasionally rate-limits or serves a bot check; the actor **retries on a fresh proxy session** automatically. If a page stays blocked after retries, it's reported as an `error` row and — because billing is **pay-per-result** — it costs you nothing.
- Residential proxies are the default and give the best success rate. Datacenter IPs get blocked quickly; not recommended.

### Pricing (pay-per-result)

| Event | Price |
|---|---|
| Actor start | $0.01 per run |
| Result (Search / Best sellers / New releases / Seller / Suggestions) | **$0.002 each** |
| Product detail (full record) | **$0.0075 each** |

You are charged only for results actually returned. A run that gets blocked and returns nothing costs only the actor-start fee.

### Notes & limits

- This scrapes **public** Amazon listing/catalog data. It does **not** scrape individual review text (Amazon login-walls full reviews) — a product's **average rating and review count** are included, but not the review bodies.
- **Price** is returned for the vast majority of products. A small number legitimately have no price (pre-orders, "see buying options", currently-unavailable items), and Amazon occasionally serves a page variant where the price is loaded dynamically — Product mode automatically re-fetches to recover it, but `price` can still be `null` in those cases. All other fields are unaffected.
- Category slugs vary by marketplace — copy them from the Best Sellers URL on the marketplace you're targeting.
- Respect Amazon's Terms of Service and applicable laws; you are responsible for how you use scraped data.

# Actor input Schema

## `mode` (type: `string`):

Pick one data type. Each mode uses a different input field below (the field it needs is named in its description):

• <b>Search</b> — products for a keyword (uses <b>Search terms</b>)
• <b>Product detail</b> — full data for specific products (uses <b>ASINs or product URLs</b>)
• <b>Best sellers</b> — a category's best-seller ranking (uses <b>Category</b>)
• <b>New releases</b> — a category's newest products (uses <b>Category</b>)
• <b>Seller storefront</b> — all products from a seller (uses <b>Seller IDs</b>)
• <b>Keyword suggestions</b> — Amazon autocomplete for a prefix (uses <b>Search terms</b>)

## `search` (type: `array`):

Used by <b>Search</b> and <b>Keyword suggestions</b> modes. One or more keywords, e.g. <code>wireless headphones</code>. In Search mode each term returns product cards; in Keyword suggestions mode each term returns Amazon's autocomplete completions.

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

Used by <b>Product detail</b> mode. One entry per product — either a 10-character ASIN (e.g. <code>B09XS7JWHH</code>) or a full Amazon product URL. A full URL's marketplace overrides the Marketplace field below.

## `category` (type: `array`):

Used by <b>Best sellers</b> and <b>New releases</b> modes. An Amazon category slug (e.g. <code>electronics</code>, <code>books</code>, <code>toys-and-games</code>, <code>kitchen</code>) OR a full best-sellers/new-releases URL. You can list several. Tip: open a Best Sellers page on Amazon and copy the word after <code>/bestsellers/</code> in the URL.

## `sellerIds` (type: `array`):

Used by <b>Seller storefront</b> mode. One or more Amazon seller IDs (the value after <code>seller=</code> or <code>me=</code> in a seller's storefront URL, e.g. <code>A2L77EE7U53NWQ</code>). Returns every product listed on each seller's storefront.

## `marketplace` (type: `string`):

Which Amazon site to scrape. For bare ASINs/keywords/categories this decides the domain; a full product URL overrides it. Works on all listed marketplaces.

## `maxItems` (type: `integer`):

Hard cap on the total number of result rows this run will produce (across all your inputs). Keeps cost predictable. You are only charged per result row returned.

## `maxPagesPerQuery` (type: `integer`):

For Search, Seller, Best sellers and New releases modes: how many result pages to follow per input (each page is ~16–60 products). 1 = first page only. Ignored by Product detail and Keyword suggestions modes.

## `maxConcurrency` (type: `integer`):

Maximum requests fetched in parallel.

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

Proxy for requests. Residential proxies are strongly recommended — Amazon blocks datacenter IPs quickly. This is the default.

## Actor input object example

```json
{
  "mode": "search",
  "search": [
    "wireless headphones",
    "yoga mat"
  ],
  "asins": [
    "B09XS7JWHH",
    "https://www.amazon.com/dp/B08N5WRWNW"
  ],
  "category": [
    "electronics",
    "books"
  ],
  "sellerIds": [
    "A2L77EE7U53NWQ"
  ],
  "marketplace": "in",
  "maxItems": 100,
  "maxPagesPerQuery": 1,
  "maxConcurrency": 8,
  "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 = {
    "search": [
        "wireless headphones"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation_craft/amazon-data-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 = { "search": ["wireless headphones"] }

# Run the Actor and wait for it to finish
run = client.actor("automation_craft/amazon-data-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 '{
  "search": [
    "wireless headphones"
  ]
}' |
apify call automation_craft/amazon-data-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Data Scraper — Search, Products, Best Sellers & More",
        "description": "Scrape Amazon without code: search results, full product details, best sellers, new releases, seller storefronts, and keyword ideas — all in one actor, across 20+ countries. Clean JSON/CSV/Excel. Fast, and you pay only for the results you actually get.",
        "version": "0.1",
        "x-build-id": "9qOqEbcbjdcz6cW3d"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation_craft~amazon-data-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation_craft-amazon-data-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/automation_craft~amazon-data-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation_craft-amazon-data-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/automation_craft~amazon-data-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation_craft-amazon-data-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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "What do you want to scrape?",
                        "enum": [
                            "search",
                            "product",
                            "bestsellers",
                            "newreleases",
                            "seller",
                            "suggestions"
                        ],
                        "type": "string",
                        "description": "Pick one data type. Each mode uses a different input field below (the field it needs is named in its description):\n\n• <b>Search</b> — products for a keyword (uses <b>Search terms</b>)\n• <b>Product detail</b> — full data for specific products (uses <b>ASINs or product URLs</b>)\n• <b>Best sellers</b> — a category's best-seller ranking (uses <b>Category</b>)\n• <b>New releases</b> — a category's newest products (uses <b>Category</b>)\n• <b>Seller storefront</b> — all products from a seller (uses <b>Seller IDs</b>)\n• <b>Keyword suggestions</b> — Amazon autocomplete for a prefix (uses <b>Search terms</b>)",
                        "default": "search"
                    },
                    "search": {
                        "title": "Search terms",
                        "type": "array",
                        "description": "Used by <b>Search</b> and <b>Keyword suggestions</b> modes. One or more keywords, e.g. <code>wireless headphones</code>. In Search mode each term returns product cards; in Keyword suggestions mode each term returns Amazon's autocomplete completions.",
                        "default": [
                            "wireless headphones"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "asins": {
                        "title": "ASINs or product URLs",
                        "type": "array",
                        "description": "Used by <b>Product detail</b> mode. One entry per product — either a 10-character ASIN (e.g. <code>B09XS7JWHH</code>) or a full Amazon product URL. A full URL's marketplace overrides the Marketplace field below.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category",
                        "type": "array",
                        "description": "Used by <b>Best sellers</b> and <b>New releases</b> modes. An Amazon category slug (e.g. <code>electronics</code>, <code>books</code>, <code>toys-and-games</code>, <code>kitchen</code>) OR a full best-sellers/new-releases URL. You can list several. Tip: open a Best Sellers page on Amazon and copy the word after <code>/bestsellers/</code> in the URL.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sellerIds": {
                        "title": "Seller IDs",
                        "type": "array",
                        "description": "Used by <b>Seller storefront</b> mode. One or more Amazon seller IDs (the value after <code>seller=</code> or <code>me=</code> in a seller's storefront URL, e.g. <code>A2L77EE7U53NWQ</code>). Returns every product listed on each seller's storefront.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "marketplace": {
                        "title": "Marketplace",
                        "enum": [
                            "com",
                            "co.uk",
                            "de",
                            "fr",
                            "it",
                            "es",
                            "in",
                            "ca",
                            "com.au",
                            "com.br",
                            "com.mx",
                            "co.jp",
                            "nl",
                            "se",
                            "ae",
                            "sg",
                            "pl",
                            "com.tr",
                            "sa",
                            "eg"
                        ],
                        "type": "string",
                        "description": "Which Amazon site to scrape. For bare ASINs/keywords/categories this decides the domain; a full product URL overrides it. Works on all listed marketplaces.",
                        "default": "in"
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Hard cap on the total number of result rows this run will produce (across all your inputs). Keeps cost predictable. You are only charged per result row returned.",
                        "default": 100
                    },
                    "maxPagesPerQuery": {
                        "title": "Max pages per query",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "For Search, Seller, Best sellers and New releases modes: how many result pages to follow per input (each page is ~16–60 products). 1 = first page only. Ignored by Product detail and Keyword suggestions modes.",
                        "default": 1
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 30,
                        "type": "integer",
                        "description": "Maximum requests fetched in parallel.",
                        "default": 8
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy for requests. Residential proxies are strongly recommended — Amazon blocks datacenter IPs quickly. This is the default.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
