# Amazon Seller Scraper (`unfenced-group/amazon-seller-scraper`) Actor

Scrape Amazon seller profiles, ASIN offer listings, and seller storefronts. Extract seller name, ratings, feedback, address, products, and competing offers across 10 Amazon marketplaces. $3 per 1,000 results.

- **URL**: https://apify.com/unfenced-group/amazon-seller-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## 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.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 Seller Scraper
![Banner](https://api.apify.com/v2/key-value-stores/lJlifu6C8YQfZMPKE/records/amazon-seller-scraper)

Scrape Amazon seller storefronts, seller profiles, and product details across 11 Amazon marketplaces. Extract seller ratings, feedback statistics, business addresses, full product catalogs, prices, review counts, and deal badges — without an API key or login. $3 per 1,000 results.

---

### Why this scraper?

#### 📦 Four modes in one actor

**Keyword Search** — search Amazon for products by keyword and get results across all sellers: ASIN, title, price, discount, rating, review count, Prime badge, Best Seller and Amazon's Choice badges. Paginated — handles hundreds of results per keyword.

**Seller Catalog** — supply a seller ID and get every product they list: ASIN, title, price, discount, rating, review count, Prime eligibility, Best Seller and Amazon's Choice badges. Paginated — handles sellers with thousands of listings.

**Seller Profile** — extract business intelligence: seller name, logo, positive feedback percentage, total feedback count, star rating, business name, registered address, VAT number, and contact details from the seller's profile page.

**Product Details** — supply a list of ASINs and get full product data: title, brand, price, rating, review count, availability, feature bullet points, and breadcrumb categories. Pairs perfectly with Seller Catalog to enrich product listings.

#### 🌍 11 Amazon marketplaces
amazon.com · amazon.co.uk · amazon.de · amazon.fr · amazon.ca · amazon.nl · amazon.co.jp · amazon.com.au · amazon.in · amazon.it · amazon.es

#### 💰 Cheapest reliable scraper on the market
At $0.003 per result we undercut every comparable actor:
- junglee/amazon-seller-scraper: $0.004 *(★1.78, empty README)*
- pratikdani/amazon-seller-extractor: $0.018
- xmiso static database: $0.0089 *(not live data)*

---

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `"keyword-search"` | `keyword-search` \| `seller-catalog` \| `seller-profile` \| `product-details` |
| `keywords` | array | `[]` | Search terms (keyword-search mode). Each keyword searched separately. Example: `["wireless headphones", "iphone case"]` |
| `sellerIds` | array | `[]` | Amazon seller IDs (seller-catalog and seller-profile modes) |
| `asins` | array | `[]` | Amazon ASINs (product-details mode) |
| `marketplace` | string | `"amazon.com"` | Target Amazon marketplace — amazon.com · amazon.co.uk · amazon.de · amazon.fr · amazon.ca · amazon.nl · amazon.co.jp · amazon.com.au · amazon.in · amazon.it · amazon.es |
| `maxResults` | integer | `100` | Maximum items to return |
| `maxPages` | integer | `10` | Max pages per keyword or seller (~24 results/page) |

**How to find a seller ID:** open any seller's storefront on Amazon. The URL contains `me=SELLERID` — copy that value. Example: `A2L77EE7U53NWQ`.

---

### Output

#### Seller Catalog mode

| Field | Type | Description |
|---|---|---|
| `asin` | string | Amazon ASIN |
| `sellerId` | string | Seller ID (matches input) |
| `title` | string | Product title |
| `url` | string | Product page URL |
| `price` | number\|null | Current price |
| `listPrice` | number\|null | Original price before discount |
| `discount` | number\|null | Absolute discount ($) |
| `discountPct` | number\|null | Discount percentage |
| `rating` | number\|null | Average star rating (0–5) |
| `reviewCount` | integer\|null | Total review count |
| `image` | string\|null | Product thumbnail URL |
| `isPrime` | boolean | Prime eligible |
| `isBestSeller` | boolean | Best Seller badge present |
| `isAmazonChoice` | boolean | Amazon's Choice badge present |
| `coupon` | string\|null | Coupon text if present |
| `delivery` | string\|null | Delivery info (e.g. "FREE delivery") |
| `marketplace` | string | Amazon marketplace |
| `currency` | string | Currency code |
| `scrapedAt` | string | ISO 8601 timestamp |

#### Seller Profile mode

| Field | Type | Description |
|---|---|---|
| `sellerId` | string | Seller ID |
| `sellerName` | string | Display name |
| `storefrontUrl` | string | Link to seller's catalog |
| `logoUrl` | string\|null | Seller logo image |
| `positiveFeedbackPct` | integer\|null | % positive feedback (last 12 months) |
| `ratingCount` | integer\|null | Total feedback count |
| `starRating` | number\|null | Star rating (0–5) |
| `businessName` | string\|null | Registered business name |
| `businessAddress` | string\|null | Registered address |
| `vatNumber` | string\|null | VAT registration number (EU sellers) |
| `phone` | string\|null | Business phone |
| `email` | string\|null | Business email |

#### Product Details mode

| Field | Type | Description |
|---|---|---|
| `asin` | string | ASIN |
| `title` | string | Full product title |
| `brand` | string\|null | Brand name |
| `url` | string | Product page URL |
| `price` | number\|null | Current price |
| `currency` | string | Currency code |
| `rating` | number\|null | Average star rating |
| `reviewCount` | integer\|null | Total review count |
| `image` | string\|null | Main product image URL |
| `availability` | string\|null | Availability text (e.g. "In Stock") |
| `inStock` | boolean\|null | True if in stock |
| `bulletPoints` | array\|null | Feature bullet points |
| `categories` | array\|null | Breadcrumb category path |

#### Example: Seller Catalog item

```json
{
  "asin": "B0F3GWXLTS",
  "sellerId": "A2L77EE7U53NWQ",
  "title": "Nintendo Switch 2 System",
  "url": "https://www.amazon.com/dp/B0F3GWXLTS",
  "price": 449.99,
  "listPrice": null,
  "discount": null,
  "discountPct": null,
  "rating": 4.8,
  "reviewCount": 3341,
  "image": "https://m.media-amazon.com/images/I/714-Fh3ngmL._AC_UY218_.jpg",
  "isPrime": false,
  "isBestSeller": true,
  "isAmazonChoice": false,
  "coupon": null,
  "delivery": "FREE delivery",
  "marketplace": "amazon.com",
  "currency": "USD",
  "scrapedAt": "2026-06-03T10:23:44.000Z"
}
````

#### Example: Seller Profile item

```json
{
  "sellerId": "A2L77EE7U53NWQ",
  "sellerName": "Amazon Resale",
  "storefrontUrl": "https://www.amazon.com/s?me=A2L77EE7U53NWQ&marketplaceID=ATVPDKIKX0DER",
  "logoUrl": "https://m.media-amazon.com/images/I/01wXmgqv24L.jpg",
  "positiveFeedbackPct": 83,
  "ratingCount": 142000,
  "starRating": 4.1,
  "businessName": "Amazon.com Services, Inc.",
  "businessAddress": "410 Terry Avenue North, Seattle, WA 98109, US",
  "vatNumber": null,
  "phone": null,
  "email": null,
  "marketplace": "amazon.com",
  "currency": "USD",
  "scrapedAt": "2026-06-03T10:24:10.000Z"
}
```

***

### Examples

**Search Amazon for products by keyword:**

```json
{
  "mode": "keyword-search",
  "keywords": ["wireless headphones", "bluetooth speaker"],
  "marketplace": "amazon.com",
  "maxResults": 50
}
```

**Search on a specific marketplace:**

```json
{
  "mode": "keyword-search",
  "keywords": ["koffiezetapparaat"],
  "marketplace": "amazon.nl",
  "maxResults": 30
}
```

**Scrape a seller's full product catalog:**

```json
{
  "mode": "seller-catalog",
  "sellerIds": ["A2L77EE7U53NWQ"],
  "marketplace": "amazon.com",
  "maxResults": 500
}
```

**Get business info and feedback stats for multiple sellers:**

```json
{
  "mode": "seller-profile",
  "sellerIds": ["A2L77EE7U53NWQ", "A1EVAM02EL8SFB", "A3KWCNM7JXKR5P"],
  "marketplace": "amazon.com"
}
```

**Enrich a list of ASINs with full product data:**

```json
{
  "mode": "product-details",
  "asins": ["B09X7CRKRZ", "B0BDHWDR12", "B08FC5L3RG"],
  "marketplace": "amazon.com"
}
```

**Scrape a German seller's catalog:**

```json
{
  "mode": "seller-catalog",
  "sellerIds": ["A1EVAM02EL8SFB"],
  "marketplace": "amazon.de",
  "maxResults": 200
}
```

***

### 💰 Pricing

**$3.00 per 1,000 items** — you pay only for successfully scraped results.

| Volume | Cost |
|---|---|
| 100 items | ~$0.30 |
| 1,000 items | ~$3.00 |
| 10,000 items | ~$30.00 |

> The next cheapest reliable alternative (junglee) charges $4.00/1,000 — and has a ★1.78 rating with an empty README.

***

### Performance

| Run | Approx. time |
|---|---|
| 50 catalog products | 2–4 min |
| 200 catalog products | 8–15 min |
| 20 seller profiles | 3–6 min |
| 50 product details | 5–10 min |

***

### Known limitations

- Seller ID and buy-box seller attribution on product pages are loaded by JavaScript and are not available in server-side HTML. Use seller-catalog mode with a known seller ID to get their catalog.
- Some marketplace regions (amazon.co.jp, amazon.in) may have lower success rates due to locale-specific page structures.
- Prices and availability change frequently — data is accurate at `scrapedAt` timestamp.

***

### Technical details

- **Sources:** 11 Amazon marketplaces
- **Stack:** HTTP-only + RESIDENTIAL proxy
- **Memory:** 512 MB

***

### Additional services

Need custom filters, scheduled runs, bulk seller lead lists, or integration support?
Email <info@unfencedgroup.nl> — we build on request.

***

*Part of the [Unfenced Group](https://apify.com/unfenced-group) scraper portfolio — 280+ actors across e-commerce, jobs, real estate, and more.*

# Actor input Schema

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

What to scrape. 'keyword-search' searches Amazon by keyword (input: keywords). 'seller-catalog' lists all products a seller sells (input: sellerIds). 'seller-profile' extracts seller business name, ratings, feedback stats, and address (input: sellerIds). 'product-details' returns full product data for a list of ASINs (input: asins).

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

Search terms to query on Amazon (keyword-search mode). Each keyword is searched separately. Examples: 'wireless headphones', 'instant pot', 'iphone case'

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

Amazon seller IDs. Used in seller-catalog and seller-profile modes. Find the seller ID in any seller's storefront URL: amazon.com/s?me=SELLERID. Example: A2L77EE7U53NWQ

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

Amazon product ASINs for product-details mode. Each ASIN returns full product data. Example: B09X7CRKRZ

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

Direct Amazon storefront or product URLs to scrape.

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

Which Amazon marketplace to scrape. Determines domain, currency, and proxy country.

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

Maximum total items to return across all inputs.

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

Maximum catalog pages per seller in seller-catalog mode (each page has ~24 products).

## Actor input object example

```json
{
  "mode": "keyword-search",
  "keywords": [],
  "sellerIds": [],
  "asins": [],
  "startUrls": [],
  "marketplace": "amazon.com",
  "maxResults": 5,
  "maxPages": 3
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/amazon-seller-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/amazon-seller-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 '{}' |
apify call unfenced-group/amazon-seller-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Seller Scraper",
        "description": "Scrape Amazon seller profiles, ASIN offer listings, and seller storefronts. Extract seller name, ratings, feedback, address, products, and competing offers across 10 Amazon marketplaces. $3 per 1,000 results.",
        "version": "0.0",
        "x-build-id": "tNMswCUUAtscftd6K"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~amazon-seller-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-amazon-seller-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/unfenced-group~amazon-seller-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-amazon-seller-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/unfenced-group~amazon-seller-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-amazon-seller-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": {
                    "mode": {
                        "title": "Scraping mode",
                        "enum": [
                            "keyword-search",
                            "seller-catalog",
                            "seller-profile",
                            "product-details"
                        ],
                        "type": "string",
                        "description": "What to scrape. 'keyword-search' searches Amazon by keyword (input: keywords). 'seller-catalog' lists all products a seller sells (input: sellerIds). 'seller-profile' extracts seller business name, ratings, feedback stats, and address (input: sellerIds). 'product-details' returns full product data for a list of ASINs (input: asins).",
                        "default": "keyword-search"
                    },
                    "keywords": {
                        "title": "Keywords",
                        "type": "array",
                        "description": "Search terms to query on Amazon (keyword-search mode). Each keyword is searched separately. Examples: 'wireless headphones', 'instant pot', 'iphone case'",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "sellerIds": {
                        "title": "Seller IDs",
                        "type": "array",
                        "description": "Amazon seller IDs. Used in seller-catalog and seller-profile modes. Find the seller ID in any seller's storefront URL: amazon.com/s?me=SELLERID. Example: A2L77EE7U53NWQ",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "asins": {
                        "title": "ASINs (product-details mode)",
                        "type": "array",
                        "description": "Amazon product ASINs for product-details mode. Each ASIN returns full product data. Example: B09X7CRKRZ",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Direct Amazon storefront or product URLs to scrape.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "marketplace": {
                        "title": "Amazon marketplace",
                        "enum": [
                            "amazon.com",
                            "amazon.co.uk",
                            "amazon.de",
                            "amazon.fr",
                            "amazon.ca",
                            "amazon.nl",
                            "amazon.co.jp",
                            "amazon.com.au",
                            "amazon.in",
                            "amazon.it",
                            "amazon.es"
                        ],
                        "type": "string",
                        "description": "Which Amazon marketplace to scrape. Determines domain, currency, and proxy country.",
                        "default": "amazon.com"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum total items to return across all inputs.",
                        "default": 5
                    },
                    "maxPages": {
                        "title": "Max pages per seller",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum catalog pages per seller in seller-catalog mode (each page has ~24 products).",
                        "default": 3
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
