# Cian.ru Scraper (`one-api/cian-scraper`) Actor

Scrape Cian.ru, Russia's top real-estate marketplace. Search by location, region id, coordinates, polygon or URL; pull full listing details, similar listings, agent profiles + offers, residential-complex (ЖК) details, and autocomplete Russian locations.

- **URL**: https://apify.com/one-api/cian-scraper.md
- **Developed by:** [ONE API](https://apify.com/one-api) (community)
- **Categories:** Lead generation, Real estate
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.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.

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

## Cian.ru Scraper

Scrape **Cian.ru**, Russia's leading real-estate marketplace. Search apartments, houses, land and commercial units for sale or rent, look up full listing details, fetch similar listings, agent profiles and their offers, residential-complex (ЖК) details, and resolve Russian locations to Cian region ids.

### What it does

- **🔎 Search Listings** — five auto-detected modes from one input box:
  - city / district / metro / street name (e.g. `Москва`, `Тверская, Москва`)
  - Cian region id (pure digits — resolve via the Autocomplete section)
  - coordinates `lat,lng` or `lat,lng,radius`
  - polygon `lon lat,lon lat,...`
  - any `cian.ru` search or offer URL

  Deal type, property type, rooms, price / area / floor / year filters, building material, sort order and pagination all apply.
- **🏠 Property Details** — auto-detects each input as an offer id (digits) or `cian.ru` URL; returns the full record (price, area, rooms, floor, building, photos, metro/geo, agent/owner contacts).
- **🔗 Similar Listings** — comparable offers for any Cian offer id.
- **👤 Agents** — for each agent/agency id: one profile row plus one row per active listing.
- **🏗️ New Buildings (ЖК)** — residential-complex details (name, status, completion year, address) by id.
- **🔍 Autocomplete** — resolve Russian location names to Cian region ids you can feed straight back into Search.

### Output

- **One flat dataset row per listing / agent / complex / suggestion** — sortable, filterable, CSV-exportable.
- Columns: `Mode`, `Deal Type`, `Offer Type`, `Property ID`, `Title`, `Agent / Owner`, `Address`, `Metro`, `Price`, `Currency`, `Rooms`, `Total Area m²`, `Floor`, `Year Built`, `Latitude`, `Longitude`, `Cover Photo`, `Listing URL`.
- Full upstream JSON kept in the `Raw` column for power users.

### Inputs

- Each section is independent — fill only the ones you need.
- Multiple inputs per section: one per line.
- The search filters apply to every Search query.

### Pricing

- Pay per result: **$3 per 1,000 dataset items** — same rate on every Apify plan tier.
- Apify start fee: $0.00005 per run.

### Notes

- Cian serves ~28 listings per page — raise **Pages per search** to fetch more.
- Cian has no sold/closed listings — deal type is **For Sale** or **For Rent** only.
- Prices are in rubles (₽).

### Errors

- Failures land in the dataset as rows with `Mode = "ERROR"` and the upstream error message in `Title` — nothing is silently dropped.

# Actor input Schema

## `search_inputs` (type: `array`):

Auto-detects each entry and routes to the right `/search/*` endpoint:
• `https://www.cian.ru/...` (search or offer URL) → `/search/byurl`
• `lat,lng` or `lat,lng,radius` (e.g. `55.75,37.62,3`) → `/search/bycoordinates`
• `lon lat,lon lat,...` (≥4 space-separated pairs) → `/search/bypolygon`
• Pure digits (e.g. `1`) → `/search/byregionid` (Cian region id — find ids via the Autocomplete section)
• Anything else (city / district / metro / street, e.g. `Москва`, `Тверская, Москва`) → `/search/bylocation`

The filters below apply to every search. Each hit returns one row per listing.
## `property_inputs` (type: `array`):

Auto-detects each entry and calls the right endpoint:
• Digits only (e.g. `317927888`) → `/details/byid`
• `https://www.cian.ru/sale/flat/.../` → `/details/byurl`

Each row is one full listing record (price, area, rooms, building, photos, metro/geo, agent/owner contacts).
## `similar_ids` (type: `array`):

For each Cian offer id, fetch comparable listings via `/similar/byid` (one row per similar offer).
## `agent_ids` (type: `array`):

For each Cian user/agency id, fetch `/agent/details` (one profile row) plus `/agent/offers` (one row per active listing). Agent ids appear in the `Agent / Owner` and `Raw` columns of search results.
## `newbuilding_ids` (type: `array`):

For each residential-complex id, fetch `/newbuilding/byid` (one row per ЖК: name, status, completion year, address). New-building ids appear in the `Raw` column of search results.
## `autocomplete_inputs` (type: `array`):

Resolve Russian location names to Cian region ids via `/autocomplete`. Each row carries the `Property ID` = region id you can feed back into the Search section's `byregionid` mode. Returns cities, districts, metro stations, and streets.
## `searchType` (type: `string`):

Sale or rent. Cian has no sold/closed listings.
## `propertyType` (type: `string`):

Which Cian category to search.
## `rooms` (type: `string`):

Comma-separated room counts for apartments: `1,2,3`. Also accepts `studio`, `free` (free layout), `6+`.
## `priceRange` (type: `string`):

Format: `min:5000000,max:15000000` — either half optional. Rubles.
## `totalAreaRange` (type: `string`):

Format: `min:40,max:80`.
## `floorRange` (type: `string`):

Format: `min:2,max:9`.
## `yearBuiltRange` (type: `string`):

Format: `min:2000,max:2024`.
## `houseMaterial` (type: `string`):

Comma-separated: `brick,monolith,panel` (also `block`, `wood`, `stalin`).
## `buildingStatus` (type: `string`):

Limit apartments to new construction or secondary market.
## `sortOrder` (type: `string`):

How to sort search results.
## `notFirstFloor` (type: `boolean`):

Exclude ground-floor listings.
## `notLastFloor` (type: `boolean`):

Exclude top-floor listings.
## `withPhoto` (type: `boolean`):

Only listings that have photos.
## `pages` (type: `integer`):

How many pages to fetch for each Search query (Cian serves ~28 listings per page).
## `resultCount` (type: `integer`):

Listings per page (Cian caps each page at 28). Also caps Similar and Agent-offers results.

## Actor input object example

```json
{
  "search_inputs": [
    "Москва",
    "Казань"
  ],
  "property_inputs": [],
  "similar_ids": [],
  "agent_ids": [],
  "newbuilding_ids": [],
  "autocomplete_inputs": [
    "Москва"
  ],
  "searchType": "For_Sale",
  "propertyType": "apartment",
  "rooms": "",
  "priceRange": "",
  "totalAreaRange": "",
  "floorRange": "",
  "yearBuiltRange": "",
  "houseMaterial": "",
  "buildingStatus": "",
  "sortOrder": "Default",
  "notFirstFloor": false,
  "notLastFloor": false,
  "withPhoto": false,
  "pages": 1,
  "resultCount": 28
}
````

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "search_inputs": [
        "Москва",
        "Казань"
    ],
    "property_inputs": [],
    "similar_ids": [],
    "agent_ids": [],
    "newbuilding_ids": [],
    "autocomplete_inputs": [
        "Москва"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("one-api/cian-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "search_inputs": [
        "Москва",
        "Казань",
    ],
    "property_inputs": [],
    "similar_ids": [],
    "agent_ids": [],
    "newbuilding_ids": [],
    "autocomplete_inputs": ["Москва"],
}

# Run the Actor and wait for it to finish
run = client.actor("one-api/cian-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "search_inputs": [
    "Москва",
    "Казань"
  ],
  "property_inputs": [],
  "similar_ids": [],
  "agent_ids": [],
  "newbuilding_ids": [],
  "autocomplete_inputs": [
    "Москва"
  ]
}' |
apify call one-api/cian-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Cian.ru Scraper",
        "description": "Scrape Cian.ru, Russia's top real-estate marketplace. Search by location, region id, coordinates, polygon or URL; pull full listing details, similar listings, agent profiles + offers, residential-complex (ЖК) details, and autocomplete Russian locations.",
        "version": "1.0",
        "x-build-id": "4BdhhwvV12ViLyUYw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/one-api~cian-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-one-api-cian-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/one-api~cian-scraper/runs": {
            "post": {
                "operationId": "runs-sync-one-api-cian-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/one-api~cian-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-one-api-cian-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "search_inputs": {
                        "title": "Search query (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry and routes to the right `/search/*` endpoint:\n• `https://www.cian.ru/...` (search or offer URL) → `/search/byurl`\n• `lat,lng` or `lat,lng,radius` (e.g. `55.75,37.62,3`) → `/search/bycoordinates`\n• `lon lat,lon lat,...` (≥4 space-separated pairs) → `/search/bypolygon`\n• Pure digits (e.g. `1`) → `/search/byregionid` (Cian region id — find ids via the Autocomplete section)\n• Anything else (city / district / metro / street, e.g. `Москва`, `Тверская, Москва`) → `/search/bylocation`\n\nThe filters below apply to every search. Each hit returns one row per listing.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "property_inputs": {
                        "title": "Offer id or Cian URL (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry and calls the right endpoint:\n• Digits only (e.g. `317927888`) → `/details/byid`\n• `https://www.cian.ru/sale/flat/.../` → `/details/byurl`\n\nEach row is one full listing record (price, area, rooms, building, photos, metro/geo, agent/owner contacts).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "similar_ids": {
                        "title": "Offer id for similar listings (one per line)",
                        "type": "array",
                        "description": "For each Cian offer id, fetch comparable listings via `/similar/byid` (one row per similar offer).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "agent_ids": {
                        "title": "Agent / agency id (one per line)",
                        "type": "array",
                        "description": "For each Cian user/agency id, fetch `/agent/details` (one profile row) plus `/agent/offers` (one row per active listing). Agent ids appear in the `Agent / Owner` and `Raw` columns of search results.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "newbuilding_ids": {
                        "title": "New building (ЖК) id (one per line)",
                        "type": "array",
                        "description": "For each residential-complex id, fetch `/newbuilding/byid` (one row per ЖК: name, status, completion year, address). New-building ids appear in the `Raw` column of search results.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "autocomplete_inputs": {
                        "title": "Location text to resolve (one per line)",
                        "type": "array",
                        "description": "Resolve Russian location names to Cian region ids via `/autocomplete`. Each row carries the `Property ID` = region id you can feed back into the Search section's `byregionid` mode. Returns cities, districts, metro stations, and streets.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchType": {
                        "title": "Deal type",
                        "enum": [
                            "For_Sale",
                            "For_Rent"
                        ],
                        "type": "string",
                        "description": "Sale or rent. Cian has no sold/closed listings.",
                        "default": "For_Sale"
                    },
                    "propertyType": {
                        "title": "Property type",
                        "enum": [
                            "apartment",
                            "studio",
                            "room",
                            "newbuilding",
                            "house",
                            "townhouse",
                            "land",
                            "office",
                            "commercial"
                        ],
                        "type": "string",
                        "description": "Which Cian category to search.",
                        "default": "apartment"
                    },
                    "rooms": {
                        "title": "Rooms",
                        "type": "string",
                        "description": "Comma-separated room counts for apartments: `1,2,3`. Also accepts `studio`, `free` (free layout), `6+`.",
                        "default": ""
                    },
                    "priceRange": {
                        "title": "Price range (₽)",
                        "type": "string",
                        "description": "Format: `min:5000000,max:15000000` — either half optional. Rubles.",
                        "default": ""
                    },
                    "totalAreaRange": {
                        "title": "Total area range (m²)",
                        "type": "string",
                        "description": "Format: `min:40,max:80`.",
                        "default": ""
                    },
                    "floorRange": {
                        "title": "Floor range",
                        "type": "string",
                        "description": "Format: `min:2,max:9`.",
                        "default": ""
                    },
                    "yearBuiltRange": {
                        "title": "Year built range",
                        "type": "string",
                        "description": "Format: `min:2000,max:2024`.",
                        "default": ""
                    },
                    "houseMaterial": {
                        "title": "Building material",
                        "type": "string",
                        "description": "Comma-separated: `brick,monolith,panel` (also `block`, `wood`, `stalin`).",
                        "default": ""
                    },
                    "buildingStatus": {
                        "title": "Building status (apartments)",
                        "enum": [
                            "",
                            "new",
                            "secondary"
                        ],
                        "type": "string",
                        "description": "Limit apartments to new construction or secondary market.",
                        "default": ""
                    },
                    "sortOrder": {
                        "title": "Sort order",
                        "enum": [
                            "Default",
                            "Price_Low_to_High",
                            "Price_per_sqm",
                            "Newest",
                            "Area",
                            "Metro_Distance",
                            "Street"
                        ],
                        "type": "string",
                        "description": "How to sort search results.",
                        "default": "Default"
                    },
                    "notFirstFloor": {
                        "title": "Not first floor",
                        "type": "boolean",
                        "description": "Exclude ground-floor listings.",
                        "default": false
                    },
                    "notLastFloor": {
                        "title": "Not last floor",
                        "type": "boolean",
                        "description": "Exclude top-floor listings.",
                        "default": false
                    },
                    "withPhoto": {
                        "title": "With photos only",
                        "type": "boolean",
                        "description": "Only listings that have photos.",
                        "default": false
                    },
                    "pages": {
                        "title": "Pages per search",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "How many pages to fetch for each Search query (Cian serves ~28 listings per page).",
                        "default": 1
                    },
                    "resultCount": {
                        "title": "Results per page",
                        "minimum": 1,
                        "maximum": 28,
                        "type": "integer",
                        "description": "Listings per page (Cian caps each page at 28). Also caps Similar and Agent-offers results.",
                        "default": 28
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
