# Yandex Market Scraper (`crawlerbros/yandex-market-scraper`) Actor

Scrape product listings, prices, seller offers, and reviews from Yandex Market, Russia's largest e-commerce platform. Supports search, category browsing, product details with all seller offers, and review scraping.

- **URL**: https://apify.com/crawlerbros/yandex-market-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** E-commerce, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 7 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## Yandex Market Scraper

Extract product data, prices, seller offers, and reviews from [Yandex Market](https://market.yandex.ru) — Russia's largest e-commerce and price comparison platform used by 60M+ monthly shoppers.

### What You Can Scrape

- **Product listings** — name, brand, SKU, price (current + original + discount %), rating, review count, seller details, availability, delivery info, specs, images, category hierarchy
- **All seller offers** — every seller's price for a single product, with individual seller ratings and delivery options
- **Product reviews** — author, star rating, title, text, pros/cons, date, helpful votes, photos
- **Seller reviews** — customer reviews for marketplace sellers

### Use Cases

- **Price monitoring** — track price changes across dozens of sellers for the same product
- **Competitor intelligence** — benchmark your pricing against all sellers on Yandex Market
- **Product research** — collect specs, ratings, and reviews at scale before entering a market
- **Market entry analysis** — understand price ranges, top sellers, and consumer sentiment for Russian markets

### Modes

| Mode | Description |
|------|-------------|
| `searchProducts` | Search by keyword — returns product cards with prices and ratings |
| `browseCategory` | Scrape all products in a category by URL |
| `getProductDetails` | Full product data + all seller offers for specific product URLs |
| `getReviews` | Product reviews or seller reviews from specific URLs |

### Input

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `mode` | enum | Yes | `searchProducts` | Scraping mode |
| `searchQueries` | string[] | searchProducts | — | Search keywords, e.g. `["iPhone 15", "Samsung Galaxy"]` |
| `categoryUrls` | string[] | browseCategory | — | `market.yandex.ru/catalog` URLs |
| `productUrls` | string[] | getProductDetails, getReviews | — | `market.yandex.ru/product--{slug}/{id}` URLs |
| `sellerUrls` | string[] | getReviews | — | `market.yandex.ru/shop--{slug}/{id}` URLs |
| `maxItems` | integer | No | 50 | Records per query/URL (1–1000) |
| `sortOrder` | enum | No | `relevance` | relevance, priceAsc, priceDesc, rating, popularity |
| `minPrice` | integer | No | — | Minimum price in RUB |
| `maxPrice` | integer | No | — | Maximum price in RUB |
| `minRating` | enum | No | `any` | any, 3, 3.5, 4, 4.5 |
| `reviewsSortOrder` | enum | No | `newest` | newest, highestRating, lowestRating, mostHelpful |
| `proxyConfiguration` | proxy | No | Apify RESIDENTIAL | Strongly recommended |

### Output

#### Product record

```json
{
  "recordType": "product",
  "productId": "1926025774",
  "name": "Apple iPhone 15 128GB Black",
  "brand": "Apple",
  "url": "https://market.yandex.ru/product--apple-iphone-15/1926025774",
  "categoryPath": ["Electronics", "Phones", "Smartphones"],
  "rating": 4.8,
  "reviewCount": 3241,
  "price": 79990,
  "originalPrice": 89990,
  "discount": 11,
  "currency": "RUB",
  "sellerName": "re:Store",
  "sellerRating": 4.9,
  "availability": "in_stock",
  "deliveryInfo": "Delivery tomorrow",
  "specs": { "RAM": "6 GB", "Storage": "128 GB" },
  "images": ["https://avatars.mds.yandex.net/..."],
  "offers": [],
  "scrapedAt": "2026-05-18T10:00:00+00:00"
}
````

In `getProductDetails` mode, `offers[]` is populated with all seller listings:

```json
{
  "sellerName": "Связной",
  "sellerRating": 4.7,
  "price": 81500,
  "originalPrice": 85000,
  "discount": 4,
  "condition": "new",
  "deliveryInfo": "2–3 days",
  "offerUrl": "https://market.yandex.ru/offer/..."
}
```

#### Review record

```json
{
  "recordType": "review",
  "reviewType": "product",
  "productId": "1926025774",
  "productName": "Apple iPhone 15 128GB Black",
  "author": "Ivan Petrov",
  "rating": 5,
  "title": "Excellent phone",
  "text": "Battery lasts all day...",
  "pros": "Great camera, fast",
  "cons": "Expensive",
  "date": "2026-01-15",
  "helpfulVotes": 42,
  "scrapedAt": "2026-05-18T10:00:00+00:00"
}
```

### Proxy

Yandex Market blocks datacenter IPs. **Apify Residential proxy is strongly recommended** and is set by default. The actor rotates proxy sessions between queries and retries failed requests with a fresh session.

### FAQs

**Does this work for Russian-language searches?**
Yes — search queries can be in Russian or English. The platform serves results in the configured locale.

**Can I scrape prices from all sellers for one product?**
Yes — use `getProductDetails` mode and set your product URL. The `offers[]` field in each result contains every seller's price, rating, and delivery info.

**How many results can I get per query?**
Up to 1000 per query/URL (set `maxItems`). Pagination is handled automatically.

**What happens if a CAPTCHA appears?**
The actor attempts automatic CAPTCHA resolution via checkbox click. If that fails, it rotates the proxy session and retries once before skipping to the next URL.

**Is this actor maintained?**
Yes — it is tested daily via Apify's automated run system. Open an issue or contact support if you encounter problems.

# Actor input Schema

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

What to scrape. searchProducts: find products by keyword. browseCategory: scrape a product category. getProductDetails: full details + all seller offers for specific product URLs. getReviews: scrape product or seller reviews.

## `searchQueries` (type: `array`):

One or more search queries (mode=searchProducts). Examples: 'iPhone 15', 'ноутбук Samsung'.

## `categoryUrls` (type: `array`):

Yandex Market category page URLs (mode=browseCategory). Must be market.yandex.ru/catalog URLs.

## `productUrls` (type: `array`):

Yandex Market product page URLs (mode=getProductDetails or getReviews). Format: https://market.yandex.ru/product--{slug}/{id}

## `sellerUrls` (type: `array`):

Yandex Market seller page URLs (mode=getReviews only). Format: https://market.yandex.ru/shop--{slug}/{id}

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

Maximum number of records to return per query/URL.

## `sortOrder` (type: `string`):

How to sort search results. Only applies in searchProducts and browseCategory modes.

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

Minimum price filter in Russian rubles. Only applies in searchProducts and browseCategory modes.

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

Maximum price filter in Russian rubles. Only applies in searchProducts and browseCategory modes.

## `minRating` (type: `string`):

Filter out products below this rating. Only applies in searchProducts and browseCategory modes.

## `reviewsSortOrder` (type: `string`):

How to sort reviews. Only applies in getReviews mode.

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

Required. Yandex Market only serves Russian IPs. Use Apify Residential proxy with country=RU for reliable access.

## Actor input object example

```json
{
  "mode": "searchProducts",
  "searchQueries": [
    "iPhone 15"
  ],
  "categoryUrls": [
    "https://market.yandex.ru/catalog--smartfony/54726"
  ],
  "productUrls": [
    "https://market.yandex.ru/product--smartfon-apple-iphone-7/14206636"
  ],
  "sellerUrls": [],
  "maxItems": 5,
  "sortOrder": "relevance",
  "minRating": "any",
  "reviewsSortOrder": "newest",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "RU"
  }
}
```

# Actor output Schema

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

Dataset with scraped Yandex Market products and reviews

# 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 = {
    "mode": "searchProducts",
    "searchQueries": [
        "iPhone 15"
    ],
    "categoryUrls": [
        "https://market.yandex.ru/catalog--smartfony/54726"
    ],
    "productUrls": [
        "https://market.yandex.ru/product--smartfon-apple-iphone-7/14206636"
    ],
    "sellerUrls": [],
    "maxItems": 5,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "RU"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/yandex-market-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 = {
    "mode": "searchProducts",
    "searchQueries": ["iPhone 15"],
    "categoryUrls": ["https://market.yandex.ru/catalog--smartfony/54726"],
    "productUrls": ["https://market.yandex.ru/product--smartfon-apple-iphone-7/14206636"],
    "sellerUrls": [],
    "maxItems": 5,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "RU",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/yandex-market-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 '{
  "mode": "searchProducts",
  "searchQueries": [
    "iPhone 15"
  ],
  "categoryUrls": [
    "https://market.yandex.ru/catalog--smartfony/54726"
  ],
  "productUrls": [
    "https://market.yandex.ru/product--smartfon-apple-iphone-7/14206636"
  ],
  "sellerUrls": [],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "RU"
  }
}' |
apify call crawlerbros/yandex-market-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Yandex Market Scraper",
        "description": "Scrape product listings, prices, seller offers, and reviews from Yandex Market, Russia's largest e-commerce platform. Supports search, category browsing, product details with all seller offers, and review scraping.",
        "version": "1.0",
        "x-build-id": "U48MUTKcboUDuJMyH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~yandex-market-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-yandex-market-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/crawlerbros~yandex-market-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-yandex-market-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/crawlerbros~yandex-market-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-yandex-market-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "searchProducts",
                            "browseCategory",
                            "getProductDetails",
                            "getReviews"
                        ],
                        "type": "string",
                        "description": "What to scrape. searchProducts: find products by keyword. browseCategory: scrape a product category. getProductDetails: full details + all seller offers for specific product URLs. getReviews: scrape product or seller reviews.",
                        "default": "searchProducts"
                    },
                    "searchQueries": {
                        "title": "Search Queries",
                        "type": "array",
                        "description": "One or more search queries (mode=searchProducts). Examples: 'iPhone 15', 'ноутбук Samsung'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "categoryUrls": {
                        "title": "Category URLs",
                        "type": "array",
                        "description": "Yandex Market category page URLs (mode=browseCategory). Must be market.yandex.ru/catalog URLs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "Yandex Market product page URLs (mode=getProductDetails or getReviews). Format: https://market.yandex.ru/product--{slug}/{id}",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sellerUrls": {
                        "title": "Seller URLs (getReviews only)",
                        "type": "array",
                        "description": "Yandex Market seller page URLs (mode=getReviews only). Format: https://market.yandex.ru/shop--{slug}/{id}",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of records to return per query/URL.",
                        "default": 50
                    },
                    "sortOrder": {
                        "title": "Sort Order (search & category only)",
                        "enum": [
                            "relevance",
                            "priceAsc",
                            "priceDesc",
                            "rating",
                            "popularity"
                        ],
                        "type": "string",
                        "description": "How to sort search results. Only applies in searchProducts and browseCategory modes.",
                        "default": "relevance"
                    },
                    "minPrice": {
                        "title": "Min Price (RUB)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price filter in Russian rubles. Only applies in searchProducts and browseCategory modes."
                    },
                    "maxPrice": {
                        "title": "Max Price (RUB)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price filter in Russian rubles. Only applies in searchProducts and browseCategory modes."
                    },
                    "minRating": {
                        "title": "Min Rating (search & category only)",
                        "enum": [
                            "any",
                            "3",
                            "3.5",
                            "4",
                            "4.5"
                        ],
                        "type": "string",
                        "description": "Filter out products below this rating. Only applies in searchProducts and browseCategory modes.",
                        "default": "any"
                    },
                    "reviewsSortOrder": {
                        "title": "Reviews Sort Order (getReviews only)",
                        "enum": [
                            "newest",
                            "highestRating",
                            "lowestRating",
                            "mostHelpful"
                        ],
                        "type": "string",
                        "description": "How to sort reviews. Only applies in getReviews mode.",
                        "default": "newest"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Required. Yandex Market only serves Russian IPs. Use Apify Residential proxy with country=RU for reliable access."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
