# Shopee Product Detail Scraper - Cheapest (`xtracto/shopee-product-detail`) Actor

Scrape full product detail from Shopee by Shop ID + Item ID or product URL. Returns rich data: price variants, stock, images, attributes, seller info, and more. Fast, lightweight, and no browser or account required.

- **URL**: https://apify.com/xtracto/shopee-product-detail.md
- **Developed by:** [Xtractoo](https://apify.com/xtracto) (community)
- **Categories:** E-commerce, Lead generation, Other
- **Stats:** 4 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## Shopee Product Detail Scraper

Extract **complete product data** from a single Shopee product — by Shop ID + Item ID, or by product URL. No browser automation required.

---

### Why This Actor?

Use this when you need rich, structured data from a specific product:
- Full description and brand info
- All product images
- All variant names (size, color, spec) with stock availability status
- Attributes (screen size, OS, processor, RAM, etc.)
- Price range across all variants (`price_min` / `price_max`)
- Seller info (shop name, rating, follower count, response rate, location)
- Breadcrumb / category hierarchy

---

### Supported Countries

| Code | Domain |
|------|--------|
| `id` | shopee.co.id (Indonesia) |
| `sg` | shopee.sg (Singapore) |
| `my` | shopee.com.my (Malaysia) |
| `th` | shopee.co.th (Thailand) |
| `ph` | shopee.ph (Philippines) |
| `vn` | shopee.vn (Vietnam) |
| `br` | shopee.com.br (Brazil) |
| `tw` | shopee.tw (Taiwan) |
| `mx` | shopee.com.mx (Mexico) |
| `co` | shopee.com.co (Colombia) |
| `cl` | shopee.cl (Chile) |

---

### Where the request comes from matters

Shopee shows different amounts of product information depending on the
country your request comes from. To get the **richest data** (description,
brand, full specifications, all variants, image gallery), the request must
originate from inside the country you are scraping.

When you run this actor on **Apify Cloud**, it automatically uses an Apify
Residential Proxy in your selected country for `id`, `sg`, `my`, `th`,
`ph` — no setup needed. When you run it locally (e.g. from Indonesia for
`country=sg`), no proxy is used and the actor will fall back to a lighter
data path (see the table below).

#### What you get per country

| Country | On Apify Cloud (proxy used) | Local / mismatched IP |
|---------|-----------------------------|-----------------------|
| `id` | ✅ Full data | ✅ Full data |
| `sg` | ✅ Full data | ⚠️ Light only |
| `my` | ✅ Full data | ⚠️ Light only |
| `th` | ✅ Full data | ⚠️ Light only |
| `ph` | ✅ Full data | ⚠️ Light only |
| `vn` | ⚠️ Light only — even with proxy, this region does not expose detail data | ⚠️ Light only |
| `br` | ⚠️ Light only | ⚠️ Light only |
| `tw` | ⚠️ Light only | ⚠️ Light only |
| `mx` | ⚠️ Light only | ⚠️ Light only |
| `co` | ⚠️ Light only | ⚠️ Light only |
| `cl` | ⚠️ Light only | ⚠️ Light only |

**Full data** = title, price range, description, brand, all variant names,
all attributes/specs, all images, full categories, breadcrumb, seller info.

**Light only** = title, price, primary image, rating, sold count, seller
info. Description, brand, variants, attributes, full gallery, and
breadcrumb are not returned.

> **Recommendation:** For full detail on `sg`/`my`/`th`/`ph`, **run this
> actor on Apify Cloud**. Local runs are fine for `id` or when the lighter
> data set is enough.

---

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | select | No (default: `id`) | Shopee regional domain |
| `shopId` | integer | Required* | Seller's numeric shop ID from the product URL |
| `itemId` | integer | Required* | Product's numeric item ID from the product URL |
| `url` | string | Required* | Full Shopee product URL (alternative to shopId + itemId) |
| `delay` | number | No (default: `1.0`) | Delay between HTTP requests (seconds) |

*Provide either `shopId` + `itemId`, **or** `url`. Not both required.

#### How to find Shop ID and Item ID

The IDs are embedded in every Shopee product URL:

````

https://shopee.co.id/Product-Name-i.{SHOP\_ID}.{ITEM\_ID}
↑          ↑

````

**Example:** `https://shopee.co.id/Laptop-Lenovo-i.196846900.11089699432`
- `shopId` = `196846900`
- `itemId` = `11089699432`

You can also paste the full URL into the `url` field — the country is auto-detected from the URL domain.

---

### Sample Input

#### Using Shop ID + Item ID
```json
{
  "country": "id",
  "shopId": 196846900,
  "itemId": 11089699432
}
````

#### Using URL

```json
{
  "url": "https://shopee.co.id/Laptop-Lenovo-Thinkpad-i.196846900.11089699432"
}
```

***

### Sample Output

```json
{
  "shop_id": 196846900,
  "item_id": 11089699432,
  "title": "Laptop Lenovo Thinkpad X1 Carbon 6th Intel Core i5 Gen8 Ram 16gb Ssd 256gb Bergaransi",
  "currency": "IDR",
  "description": "Laptop bekas kualitas premium, sudah dicek dan bersih...",
  "brand": "Lenovo",
  "brand_id": 52756,
  "condition": 4,
  "cat_id": 11044440,
  "price": 3570000.0,
  "price_min": 3200000.0,
  "price_max": 8370000.0,
  "price_before_discount": null,
  "discount_pct": null,
  "availability": "InStock",
  "stock": 31,
  "is_hide_stock": false,
  "historical_sold": null,
  "view_count": null,
  "liked_count": 14,
  "is_pre_order": false,
  "rating_star": 4.87,
  "rating_count": [55, 0, 0, 1, 5, 49],
  "total_ratings": 55,
  "images": [
    "https://down-id.img.susercontent.com/file/id-11134207-7ra0n-m07b3fxp1h9u48"
  ],
  "attributes": [
    { "name": "Ukuran Layar", "value": "14 inci" },
    { "name": "Sistem Operasi", "value": "Windows" },
    { "name": "Tipe Prosesor", "value": "Intel Core i5" }
  ],
  "models": [
    {
      "model_id": 227787022248,
      "name": "Carbon 6th i5 Gen8, RAM 16GB/256GB SSD",
      "price": null,
      "stock": null,
      "has_stock": true
    }
  ],
  "tier_variations": [],
  "categories": [
    { "catid": 11044364, "name": "Komputer & Aksesoris" },
    { "catid": 11044440, "name": "Laptop" }
  ],
  "breadcrumb": [
    { "position": 1, "name": "Shopee", "url": "https://shopee.co.id" },
    { "position": 2, "name": "Komputer & Aksesoris", "url": "https://shopee.co.id/..." },
    { "position": 3, "name": "Laptop" }
  ],
  "label_ids": [],
  "item_has_video": false,
  "shop_location": "KOTA BANDUNG",
  "shop": {
    "shopid": 196846900,
    "name": "RASYIDJAYA COMPUTER",
    "username": "rasyidjaya_computer",
    "location": "KOTA BANDUNG",
    "rating_star": 4.84,
    "item_count": 120,
    "follower_count": 2248,
    "response_rate": 98,
    "response_time": 2,
    "is_official_shop": false,
    "is_shopee_verified": false
  }
}
```

***

### Output Fields Reference

| Field | Type | Description |
|-------|------|-------------|
| `shop_id` / `item_id` | integer | Shopee internal IDs |
| `title` | string | Full product name |
| `currency` | string | Local currency code (IDR, SGD, MYR, etc.) |
| `description` | string | Full product description |
| `brand` / `brand_id` | string / integer | Brand name and Shopee internal brand ID |
| `condition` | integer | `1` = new, `4` = used |
| `price` | float | Displayed product price |
| `price_min` / `price_max` | float | Price range across all variants |
| `price_before_discount` | float | Original price before discount (if on sale) |
| `discount_pct` | integer | Discount percentage, e.g. `41` = 41% off |
| `availability` | string | `"InStock"` or `"OutOfStock"` |
| `stock` | integer | Total available stock (aggregate) |
| `is_hide_stock` | boolean | `true` if seller has hidden the stock number |
| `sold` | integer | Best-effort sold count (30-50% coverage, often `null`) |
| `historical_sold` | integer | Lifetime sold count (usually `null`, hidden by Shopee) |
| `rating_star` | float | Average rating (0–5) |
| `rating_count` | array | `[total, 1★, 2★, 3★, 4★, 5★]` breakdown |
| `total_ratings` | integer | Total number of ratings |
| `images` | array | List of all product image URLs |
| `models` | array | All variants: `model_id`, `name`, `price`, `stock`, `has_stock` |
| `tier_variations` | array | Variation axes (e.g. Color, Size) with option lists |
| `attributes` | array | Structured attributes: `name`, `value` pairs |
| `categories` | array | Category hierarchy from Shopee internal data |
| `breadcrumb` | array | SEO breadcrumb: `position`, `name`, `url` |
| `label_ids` | array | Shopee internal label flags |
| `item_has_video` | boolean | Whether the listing has a product video |
| `shop` | object | Seller info — name, rating, followers, response rate, etc. |

***

### Known Limitations

- **Some fields are intentionally hidden by Shopee** and cannot be
  retrieved through public requests. Specifically:
  - The price of each individual variant (`models[].price`) is hidden —
    you only get the overall price range (`price_min` / `price_max`).
  - Per-variant stock counts (`models[].stock`) are hidden — you only get
    the total available stock for the product.
  - The "items sold" count is hidden in most cases. The actor recovers it
    on a best-effort basis from visible page text, succeeding for about
    30–50% of products. Many products will return `null` here.
- **The `price` field at the product level is also hidden in detail mode**.
  For products with multiple variants you usually receive `price_min` and
  `price_max` instead. If you need the exact displayed price, scrape the
  product through `keyword` / `category` / `shop` mode first — the product
  card always carries a price.
- **Detail richness depends on where the request comes from.** Full
  product information (description, brand, all variants, attributes, image
  gallery) is only returned when the request originates inside the target
  country. On Apify Cloud this is handled automatically for
  `id`/`sg`/`my`/`th`/`ph` via residential proxy. From outside (or for
  `vn`/`br`/`tw`/`mx`/`co`/`cl`), you receive a lighter data set with
  title, price, primary image, rating, sold count, and seller info only.
  See the support table above for the exact behavior per country.
- **Items not surfaced in the seller's recent listing** (deep-archived or
  hidden products) may return only seller info when running outside the
  target country's IP region.

# Actor input Schema

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

Shopee regional site. To receive full product information (description, brand, all variants, attributes, image gallery) for sg/my/th/ph, run this actor on Apify Cloud — it will automatically use a residential proxy inside the target country. For vn/br/tw/mx/co/cl you will receive a lighter data set (title, price, primary image, rating, sold count, seller info) regardless of where the request comes from.

## `shopId` (type: `integer`):

Numeric seller shop ID. Found in the product URL: shopee.co.id/product-name-i.{SHOP\_ID}.{ITEM\_ID}

## `itemId` (type: `integer`):

Numeric product item ID. Found in the product URL: shopee.co.id/product-name-i.{SHOP\_ID}.{ITEM\_ID}

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

Full Shopee product URL as an alternative to Shop ID + Item ID. Country is auto-detected from URL. Example: https://shopee.co.id/product-i.196846900.11089699432

## `delay` (type: `number`):

Delay between HTTP requests.

## Actor input object example

```json
{
  "country": "id",
  "shopId": 196846900,
  "itemId": 11089699432,
  "delay": 1
}
```

# 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 = {
    "country": "id",
    "shopId": 196846900,
    "itemId": 11089699432,
    "url": "",
    "delay": 1
};

// Run the Actor and wait for it to finish
const run = await client.actor("xtracto/shopee-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 = {
    "country": "id",
    "shopId": 196846900,
    "itemId": 11089699432,
    "url": "",
    "delay": 1,
}

# Run the Actor and wait for it to finish
run = client.actor("xtracto/shopee-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 '{
  "country": "id",
  "shopId": 196846900,
  "itemId": 11089699432,
  "url": "",
  "delay": 1
}' |
apify call xtracto/shopee-product-detail --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopee Product Detail Scraper - Cheapest",
        "description": "Scrape full product detail from Shopee by Shop ID + Item ID or product URL. Returns rich data: price variants, stock, images, attributes, seller info, and more. Fast, lightweight, and no browser or account required.",
        "version": "0.1",
        "x-build-id": "IIT7gshJC76cN8MCF"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xtracto~shopee-product-detail/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xtracto-shopee-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/xtracto~shopee-product-detail/runs": {
            "post": {
                "operationId": "runs-sync-xtracto-shopee-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/xtracto~shopee-product-detail/run-sync": {
            "post": {
                "operationId": "run-sync-xtracto-shopee-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",
                "properties": {
                    "country": {
                        "title": "Country",
                        "enum": [
                            "id",
                            "sg",
                            "my",
                            "th",
                            "ph",
                            "vn",
                            "br",
                            "tw",
                            "mx",
                            "co",
                            "cl"
                        ],
                        "type": "string",
                        "description": "Shopee regional site. To receive full product information (description, brand, all variants, attributes, image gallery) for sg/my/th/ph, run this actor on Apify Cloud — it will automatically use a residential proxy inside the target country. For vn/br/tw/mx/co/cl you will receive a lighter data set (title, price, primary image, rating, sold count, seller info) regardless of where the request comes from.",
                        "default": "id"
                    },
                    "shopId": {
                        "title": "Shop ID",
                        "type": "integer",
                        "description": "Numeric seller shop ID. Found in the product URL: shopee.co.id/product-name-i.{SHOP_ID}.{ITEM_ID}"
                    },
                    "itemId": {
                        "title": "Item ID",
                        "type": "integer",
                        "description": "Numeric product item ID. Found in the product URL: shopee.co.id/product-name-i.{SHOP_ID}.{ITEM_ID}"
                    },
                    "url": {
                        "title": "Product URL (alternative)",
                        "type": "string",
                        "description": "Full Shopee product URL as an alternative to Shop ID + Item ID. Country is auto-detected from URL. Example: https://shopee.co.id/product-i.196846900.11089699432"
                    },
                    "delay": {
                        "title": "Request delay (seconds)",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "number",
                        "description": "Delay between HTTP requests.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
