# Free Amazon Product Detail Scraper (`easyparser/amazon-product-detail`) Actor

Retrieve complete Amazon product data including title, price, availability, images, ratings, reviews, specifications, variants, and Buy Box details for any ASIN or product URL.

- **URL**: https://apify.com/easyparser/amazon-product-detail.md
- **Developed by:** [Easyparser](https://apify.com/easyparser) (community)
- **Categories:** E-commerce
- **Stats:** 5 total users, 0 monthly users, 97.2% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## 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

## Free Amazon Product Detail Scraper

Retrieve complete, real-time Amazon product data for any ASIN or product URL, including title, pricing, availability, images, ratings, reviews, specifications, variants, and Buy Box details. Powered by [Easyparser's](https://easyparser.com) real-time Product Detail API.

> **No API key required to get started.** This actor includes a shared demo key so you can try it immediately. For higher limits and bulk processing, [sign up free at Easyparser](https://app.easyparser.com/signup).

---

### What This Actor Returns

Each run produces a single dataset item with the following data groups:

**Identity:**
- `asin`, `title`, `title_excluding_variant_name` - product identity fields
- `brand`, `manufacturer`, `model_number`, `gtin` - brand and identifier fields
- `link` - canonical Amazon product URL

**Pricing:**
- `price`, `price_raw`, `price_currency` - current Buy Box price
- `rrp`, `rrp_raw` - recommended retail / list price

**Availability:**
- `availability` - raw availability text (e.g. "In Stock")
- `is_in_stock` - boolean stock status
- `is_prime`, `is_fba`, `seller_type`, `is_amazon_fresh` - fulfillment details

**Ratings and Reviews:**
- `rating`, `ratings_total` - overall star rating and count
- `rating_breakdown` - breakdown by star level (1-5)
- `bought_activity` - recent purchase activity (e.g. "900+ bought in past month")
- `top_reviews` - sample of top customer reviews

**Content:**
- `description` - full product description
- `feature_bullets`, `feature_bullets_flat` - bullet point features

**Categories and Ranking:**
- `categories`, `categories_flat` - full category path
- `bestsellers_rank`, `bestsellers_rank_flat` - BSR by category
- `bestseller_badge` - Best Seller badge details
- `amazons_choice` - whether the product carries Amazon's Choice
- `search_alias` - primary search category

**Physical Attributes:**
- `dimensions`, `weight`, `shipping_weight`, `color`, `material`

**Specifications:**
- `specifications`, `specifications_flat` - all spec key-value pairs
- `attributes` - product attribute list

**Images:**
- `main_image` - primary image URL
- `images`, `images_flat` - full image array

**Variants:**
- `variants` - all variation ASINs with size/color dimensions
- `variant_asins_flat` - comma-separated variant ASIN list

**Buy Box Details:**
- `buybox_offer_id`, `maximum_order_quantity`
- `standard_delivery`, `fastest_delivery` - estimated delivery dates

**Brand and Store:**
- `sub_title` - byline text and link (e.g. "Visit the Brand Store")
- `brand_store` - brand storefront ID and URL

**Keywords and SEO:**
- `keywords`, `keywords_list` - keywords extracted from the product title

**Metadata:**
- `first_available` - date the product was first listed
- `marketplace_id` - Amazon marketplace identifier

---

### How to Use

#### Option A - Try It Now (No Sign-Up)
Fill in the `asin` (or `url`) and `domain` fields and run. A shared Easyparser key is built in.

#### Option B - Use Your Own API Key (Recommended for Scale)
1. Sign up free at [app.easyparser.com/signup](https://app.easyparser.com/signup) - **100 free credits/month**, no credit card required
2. Copy your API key from the [Plan Page](https://app.easyparser.com/account/plan)
3. Paste it into the `api_key` field

---

### Input Fields

| Field | Required | Description |
|-------|----------|-------------|
| `asin` | Yes* | Amazon ASIN (e.g. `B0CJB6V2L5`). Use either `asin` or `url`, not both |
| `url` | Yes* | Full Amazon product URL. Use instead of ASIN if the ASIN is unknown |
| `domain` | Yes | Amazon marketplace (e.g. `.com`, `.co.uk`, `.de`) |
| `language` | No | Language code for the page (e.g. `en_US`, `de_DE`). Defaults to the marketplace language |
| `currency` | No | Currency code for prices (e.g. `usd`, `eur`, `gbp`) |
| `a_plus_content` | No | Include A+ content section. Costs 1 extra credit per request |
| `api_key` | No | Your personal Easyparser API key (shared demo key used if empty) |

**Note:** Provide either `asin` or `url`, not both.

**Note on geographic location (address):** The Easyparser API supports simulating a specific zip code to localize pricing and delivery information via an `address_id` parameter. This feature is available when using the API directly through your Easyparser account. It is not exposed as an input field in this Actor. To use it, call the API directly at [easyparser.gitbook.io](https://easyparser.gitbook.io/easyparser-documentation/real-time-integration/detail/request).

---

### Example

**Input:**
```json
{
  "asin": "B0CJB6V2L5",
  "domain": ".com"
}
````

**Output:**

```json
{
  "asin": "B0CJB6V2L5",
  "title": "Simple Modern 36oz Insulated Hot Beverage Bottle with 2 Mugs | Travel Coffee Thermos for Hot Drinks | Twist and Pour Top | Commute, Travel, and Picnic Friendly | Roam Collection | Forest",
  "brand": "Simple Modern",
  "manufacturer": "Simple Modern",
  "model_number": "ROM-36-GLF",
  "gtin": "191719229902",
  "link": "https://www.amazon.com/Simple-Modern-Insulated-Beverage-Collection/dp/B0CJB6V2L5",

  "price": 34.99,
  "price_raw": "$34.99",
  "price_currency": "USD",
  "rrp": 41.99,
  "rrp_raw": "$41.99",

  "availability": "In Stock",
  "is_in_stock": true,
  "is_prime": false,
  "seller_type": "FBM",
  "is_fba": false,

  "rating": 4.6,
  "ratings_total": 597,
  "rating_breakdown": {
    "five_star": { "percentage": 81, "count": 484 },
    "four_star": { "percentage": 9, "count": 54 },
    "three_star": { "percentage": 5, "count": 30 },
    "two_star": { "percentage": 1, "count": 6 },
    "one_star": { "percentage": 4, "count": 24 }
  },
  "bought_activity": {
    "raw": "900+ bought in past month",
    "value": 900,
    "period": "past month"
  },

  "description": "The Simple Modern Roam Insulated Bottle is a travel friendly...",
  "feature_bullets": [
    "Double Wall Insulated: Keeps beverages hot or cold for hours",
    "Leakproof: Lid is insulated, BPA Free, and prevents leaks and spills",
    "Two Mugs: 12oz mugs are double walled and thread onto thermos bottle",
    "Durable: Stainless steel body and sturdy handle for easy pouring",
    "Limited Lifetime Warranty & Patent Pending"
  ],

  "categories_flat": "Home & Kitchen > Kitchen & Dining > Storage & Organization > Thermoses",
  "bestsellers_rank": [
    { "category": "Kitchen & Dining", "rank": 10854, "link": "..." },
    { "category": "Insulated Bottles", "rank": 188, "link": "..." }
  ],
  "amazons_choice": true,

  "dimensions": "4.29\"W x 12.36\"H",
  "weight": "1.8 Pounds",
  "shipping_weight": "1.8 Pounds",
  "color": "-Forest",

  "main_image": "https://m.media-amazon.com/images/I/510VC3SnUZL._AC_SY300_SX300_QL70_FMwebp_.jpg",
  "images": [
    { "link": "https://m.media-amazon.com/images/I/31p8Mr8haEL._AC_.jpg", "variant": "MAIN" }
  ],

  "variants": [
    {
      "asin": "B0CJB4Q6TR",
      "title": "36 Ounces -Sea Glass Sage",
      "is_current_product": false,
      "link": "https://www.amazon.com/dp/B0CJB4Q6TR",
      "dimensions": [
        { "name": "Size", "value": "36 Ounces" },
        { "name": "Color", "value": "-Sea Glass Sage" }
      ]
    }
  ],
  "variant_asins_flat": "B0CJB4Q6TR,B0CJB5DFBH,B0CJB617ND,B0CJB6V2L5",

  "top_reviews": [
    {
      "id": "R384JEBYY699I2",
      "title": "Keeps liquid hot or cold for a long time",
      "body": "Very high quality...",
      "rating": "5.0",
      "date": { "raw": "Reviewed in the United States on December 12, 2025" },
      "verified_purchase": true,
      "helpful_votes": 0
    }
  ],

  "first_available": "September 19, 2023",
  "marketplace_id": "ATVPDKIKX0DER",

  "standard_delivery": "December 29 - January 4",
  "fastest_delivery": "December 29 - 31",
  "maximum_order_quantity": 30
}
```

***

### Use Cases

- **Price Monitoring**: Track live prices, discounts, and RRP changes across any marketplace on a scheduled basis
- **Catalog Enrichment**: Auto-populate product titles, bullet points, specifications, and images across multiple sales channels
- **Dropshipping and Arbitrage**: Validate Prime status, stock levels, and variation-level pricing to ensure profitable sourcing
- **Competitor Benchmarking**: Compare competing listings by title, feature set, category placement, and pricing structure
- **Review and Rating Monitoring**: Track star distributions and read sample customer reviews to spot reputation trends
- **Buy Box Tracking**: Monitor seller changes, fulfillment type, and offer availability to support brand protection strategies
- **Keyword and SEO Analysis**: Extract product keywords for listing optimization and PPC campaign workflows
- **BI and Data Pipelines**: Feed structured product data into dashboards, BI tools, and internal systems

***

### Need More?

For **better pricing**, **higher limits**, and **dedicated throughput**:

- 🚀 [Sign Up Free](https://app.easyparser.com/signup) - 100 credits/month, no credit card
- 💰 [View Pricing Plans](https://easyparser.com/pricing)
- 🎮 [Try the API Playground](https://app.easyparser.com/playground)
- 📄 [Full Documentation](https://easyparser.gitbook.io/easyparser-documentation/real-time-integration/detail)

***

### Related Actors

- [Free Amazon Product Offers Scraper](https://apify.com/easyparser/amazon-product-offers): All seller offers with pricing, Buy Box winner, and fulfillment details
- [Free Amazon Package Dimensions and Shipping Weight](https://apify.com/easyparser/amazon-package-dimensions): Package dimensions, shipping weight, FBA fee category
- [Free Amazon Sales History & Analytics](https://apify.com/easyparser/amazon-sales-history): Weekly BSR, price, and traffic history up to 12 months
- [Free EAN/UPC to ASIN Converter](https://apify.com/easyparser/asin-to-ean-converter): Bidirectional barcode to ASIN lookup

***

### About Easyparser

[Easyparser](https://easyparser.com) is a real-time Amazon scraping API built for developers and data teams. No IP blocks, no CAPTCHAs, fast response times.

# Actor input Schema

## `asin` (type: `string`):

The Amazon Standard Identification Number of the product to look up. Example: B0CJB6V2L5. Either ASIN or URL must be provided.

## `url` (type: `string`):

Full Amazon product URL. Use this if the ASIN is unknown. Example: https://www.amazon.com/dp/B0CJB6V2L5. Do not use both ASIN and URL at the same time.

## `domain` (type: `string`):

The Amazon marketplace to query.

## `language` (type: `string`):

Language code to request the Amazon page in. Leave empty for the default marketplace language.

## `currency` (type: `string`):

Currency code for displaying prices. Leave empty to use the default marketplace currency. Example: usd, eur, gbp.

## `a_plus_content` (type: `boolean`):

If enabled, includes the 'From the manufacturer' A+ content section in the response. This feature consumes an additional credit per request.

## `api_key` (type: `string`):

Your personal Easyparser API key for higher request limits. Leave empty to use the shared demo key. Get your own free key at https://app.easyparser.com/signup - 100 free credits/month, no credit card required.

## Actor input object example

```json
{
  "asin": "B0CJB6V2L5",
  "url": "https://www.amazon.com/dp/B0CJB6V2L5",
  "domain": ".com",
  "language": "",
  "currency": "usd",
  "a_plus_content": false
}
```

# Actor output Schema

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

Dataset containing full product detail for each queried ASIN or URL, including pricing, availability, ratings, images, specifications, variants, top reviews, and Buy Box data.

# 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 = {
    "asin": "B0FC5SJNQX",
    "domain": ".com"
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyparser/amazon-product-detail").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 = {
    "asin": "B0FC5SJNQX",
    "domain": ".com",
}

# Run the Actor and wait for it to finish
run = client.actor("easyparser/amazon-product-detail").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 '{
  "asin": "B0FC5SJNQX",
  "domain": ".com"
}' |
apify call easyparser/amazon-product-detail --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Free Amazon Product Detail Scraper",
        "description": "Retrieve complete Amazon product data including title, price, availability, images, ratings, reviews, specifications, variants, and Buy Box details for any ASIN or product URL.",
        "version": "1.0",
        "x-build-id": "3RnKt6z2y28rN52RH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/easyparser~amazon-product-detail/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-easyparser-amazon-product-detail",
                "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/easyparser~amazon-product-detail/runs": {
            "post": {
                "operationId": "runs-sync-easyparser-amazon-product-detail",
                "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/easyparser~amazon-product-detail/run-sync": {
            "post": {
                "operationId": "run-sync-easyparser-amazon-product-detail",
                "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": [
                    "domain"
                ],
                "properties": {
                    "asin": {
                        "title": "ASIN",
                        "type": "string",
                        "description": "The Amazon Standard Identification Number of the product to look up. Example: B0CJB6V2L5. Either ASIN or URL must be provided."
                    },
                    "url": {
                        "title": "Product URL (alternative to ASIN)",
                        "type": "string",
                        "description": "Full Amazon product URL. Use this if the ASIN is unknown. Example: https://www.amazon.com/dp/B0CJB6V2L5. Do not use both ASIN and URL at the same time."
                    },
                    "domain": {
                        "title": "Amazon Marketplace",
                        "enum": [
                            ".com",
                            ".co.uk",
                            ".de",
                            ".fr",
                            ".co.jp",
                            ".ca",
                            ".it",
                            ".es",
                            ".com.au",
                            ".com.br",
                            ".com.mx",
                            ".nl",
                            ".se",
                            ".pl",
                            ".sg",
                            ".com.tr",
                            ".ae",
                            ".sa",
                            ".in",
                            ".eg",
                            ".com.be"
                        ],
                        "type": "string",
                        "description": "The Amazon marketplace to query."
                    },
                    "language": {
                        "title": "Language (Optional)",
                        "enum": [
                            "",
                            "en_US",
                            "de_DE",
                            "fr_FR",
                            "it_IT",
                            "es_ES",
                            "ja_JP",
                            "zh_CN",
                            "pt_BR",
                            "nl_NL",
                            "pl_PL",
                            "sv_SE",
                            "tr_TR",
                            "ar_AE"
                        ],
                        "type": "string",
                        "description": "Language code to request the Amazon page in. Leave empty for the default marketplace language.",
                        "default": ""
                    },
                    "currency": {
                        "title": "Currency (Optional)",
                        "type": "string",
                        "description": "Currency code for displaying prices. Leave empty to use the default marketplace currency. Example: usd, eur, gbp."
                    },
                    "a_plus_content": {
                        "title": "Include A+ Content (costs extra credit)",
                        "type": "boolean",
                        "description": "If enabled, includes the 'From the manufacturer' A+ content section in the response. This feature consumes an additional credit per request.",
                        "default": false
                    },
                    "api_key": {
                        "title": "Easyparser API Key (Optional)",
                        "type": "string",
                        "description": "Your personal Easyparser API key for higher request limits. Leave empty to use the shared demo key. Get your own free key at https://app.easyparser.com/signup - 100 free credits/month, no credit card required."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
