# MaxSold Scraper & Estate Auction Monitor (`scrapersdelight/maxsold-scraper`) Actor

Scrape MaxSold (maxsold.com) estate & downsizing auction items — bids, lots, photos, pickup info — by state or auction, or run on a schedule as a new-lot monitor with Slack/email/webhook alerts.

- **URL**: https://apify.com/scrapersdelight/maxsold-scraper.md
- **Developed by:** [Scrapers Delight](https://apify.com/scrapersdelight) (community)
- **Categories:** E-commerce, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 per lot returneds

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

## 📦 MaxSold Scraper & Estate Auction Monitor

**Scrape live MaxSold (maxsold.com) estate & downsizing auctions — every item lot with its title, current bid, bid count, lot number, closing time, and photos — by US state or by specific auction. Then run it on a schedule as a new-lot monitor that pings Slack, email, or webhook the moment fresh lots drop, so you bid first.**

Turn MaxSold's estate-sale and reseller auctions across the US & Canada into a clean dataset or a real-time deal alert. No login, no browser automation.

---

### What does MaxSold Scraper do?

MaxSold Scraper extracts **estate, downsizing, and reseller auction item lots** from [maxsold.com](https://www.maxsold.com) and returns them as clean, structured rows you can export to **JSON, CSV, Excel, or push to your app via API**. MaxSold runs managed online estate sales with everything from antiques and tools to furniture and collectibles — this actor pulls the individual item lots with live bid data.

- 🔎 **Find auctions by state** or scrape **specific auction IDs** directly.
- 🛒 **Item-level data** — title, description, current bid, starting/minimum bid, bid count, lot number.
- ⏰ **Timing** — each lot's start/end time and the auction's close time.
- 🏷️ **Reserve flags** — `has_reserve` / `reserve_met` and `buyer_premium`.
- 🖼️ **Photos** — every item image.
- 🔔 **New-lot monitor** — schedule it and get **Slack / email / webhook alerts** for newly listed lots.

---

### What data does it extract?

For every item lot:

- 🆔 `item_id`, 🔗 `item_url`, 🏷️ `title`, 📝 `description`, 🔢 `lot_number`
- 💵 `current_bid`, `starting_bid`, `minimum_bid`, 🔨 `bid_count`
- 🏷️ `has_reserve`, `reserve_met`, `buyer_premium`
- ⏰ `start_time`, `end_time`, 👁️ `viewed`
- 🖼️ `images[]`
- 🏛️ `auction_id`, `auction_url`, `auction_title`, `close_time`
- 📍 `region`, `city`, `state`, `country`
- ✨ `is_new` (monitor mode), 🕒 `scraped_at`

*(Turn off item scraping to get one row per **auction** instead — title, region, category, lot count, open/close time, image.)*

---

### Who is it for?

- 🛒 **Estate-sale flippers & resellers** sourcing lots to win, pick up, and resell.
- ♻️ **Thrift & consignment sourcers** hunting cheap inventory by category.
- 📊 **Price-research teams** analyzing realized estate-auction prices.
- 🧭 **Auction aggregators** combining MaxSold with other estate/auction sources.

---

### Two ways to use it

1. **Bulk scrape** — discover auctions by state (or list auction IDs) and pull every item lot into one clean dataset.
2. **New-lot monitor** *(the recurring play)* — set `monitorMode: true`, attach an **Apify Schedule**, and the actor emits/alerts **only newly-listed lots** since the last run.

---

### How to use it (step by step)

1. Click **Try for free**.
2. Choose a **Search type**: *Discover by state* (enter state names) or *Specific auction IDs*.
3. Keep **Scrape item lots** on for item-level rows (or turn it off for auction-level rows).
4. Click **Start**, then open the **Dataset** tab to view/export.
5. *(Optional)* set **monitorMode** + a **Schedule** + an alert channel to get pinged on new lots.

#### Quick start

```json
{ "searchType": "discover", "states": ["texas"], "scrapeItems": true, "maxAuctions": 10 }
````

#### Specific-auction example

```json
{ "searchType": "auctions", "auctionIds": ["110479"], "scrapeItems": true }
```

***

### Input

| Field | What it does |
|-------|--------------|
| `searchType` | `discover` (browse by state) · `auctions` (scrape given auction IDs) |
| `states` | full lower-case US state names to browse (e.g. `texas`, `new-york`) |
| `auctionIds` | specific MaxSold auction IDs to scrape |
| `scrapeItems` | output one row per **item lot** (on) or per **auction** (off) |
| `maxAuctions` / `maxItems` | caps per run |
| `monitorMode`, `alertOnNewLot` | recurring watcher + alerts |
| `webhookUrl`, `slackWebhookUrl`, `emailRecipients` | alert channels |
| `proxyConfiguration`, `requestConcurrency` | proxy + parallelism |

> **Note on discovery:** MaxSold's state browse returns the auctions it currently surfaces for that geo (it's geo-approximate — full geo-search is a credentialed call this actor doesn't use). For precise, complete coverage of a known sale, use **Specific auction IDs** (the number in `/auction/{id}/bidgallery`).

***

### Output

Each item lot (or auction) is one dataset record (fields above). Export to **JSON, CSV, Excel, HTML, or RSS**, or fetch via the **Apify API**. Bids are numbers in USD; times are ISO‑8601 with the auction's timezone offset.

***

### How much does it cost?

Pay-per-event — you pay for what you pull, no subscription. Suggested rates:

| Event | What it covers | Suggested price |
|-------|----------------|-----------------|
| `lot-scraped` | each item/auction returned | ~$0.003 / row |
| `auction-detail-scraped` | each auction opened for items | ~$0.004 / auction |
| `monitor-run-completed` | each scheduled watch run | ~$0.05 / run |
| `new-lot-detected` | each newly listed lot | ~$0.02 / lot |
| `alert-delivered` | each Slack/email/webhook push | ~$0.005 / alert |

*(Final per-event prices are set on the actor's pricing page.)*

***

### Is it legal to scrape MaxSold?

MaxSold lot listings are **public, browsable without a login**, and the records are item/listing data — not personal data. Scraping publicly available listings is generally legal, but you are responsible for your use: **review MaxSold's Terms of Service before commercial use or resale of the data**.

***

### FAQ

**What is MaxSold?**
MaxSold runs managed online estate and downsizing auctions across the US and Canada, selling everything in a home or estate as individual lots to local pickup buyers.

**Do I need an account or login?**
No. The actor reads public listing data directly.

**Can I monitor new lots and get alerts?**
Yes. Use `monitorMode`, attach an Apify **Schedule**, and add a Slack/webhook/email channel. Each run alerts **only lots new since the last run**.

**How do I scrape a specific auction?**
Set `searchType: "auctions"` and put the auction's ID (the number in `/auction/{id}/bidgallery`) in `auctionIds`.

**Does it include photos and bid counts?**
Yes — every item lot includes `images[]`, `current_bid`, and `bid_count`.

**How do I export the data?**
JSON, CSV, Excel, HTML, or RSS from the Dataset tab, or via the Apify API.

***

### You might also like

- 📦 Other estate & online auctions (K-BID, equip-bid, Proxibid)
- 🏛️ Government & surplus auctions (GSA Auctions, PublicSurplus, StorageTreasures)
- 🔨 General auction marketplace scrapers

***

### Feedback

Found a missing field or want a new filter? Open an issue on the actor — fast fixes and feature requests welcome.

# Actor input Schema

## `searchType` (type: `string`):

How to find auctions. 'discover' browses MaxSold by US state(s); 'auctions' scrapes the specific auction IDs you provide (most precise).

## `states` (type: `array`):

Full lower-case US state names to browse, e.g. texas, california, new-york. Used when Search type = Discover. Note: MaxSold's browse returns its current set of auctions; results are filtered to your state(s) client-side.

## `auctionIds` (type: `array`):

Specific MaxSold auction IDs (the number in /auction/{id}/bidgallery). Used when Search type = Specific auction IDs.

## `scrapeItems` (type: `boolean`):

Output one row per ITEM lot (title, current bid, lot #, photos) by opening each auction's bid gallery. Turn OFF to output one row per AUCTION instead.

## `maxAuctions` (type: `integer`):

Cap on how many auctions to open this run (0 = unlimited).

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

Cap on total item lots returned this run (0 = unlimited).

## `monitorMode` (type: `boolean`):

Recurring watcher: diff against the prior run's seen lots (per scope) and output/alert ONLY newly-listed lots. Pair with an Apify Schedule.

## `alertOnNewLot` (type: `boolean`):

In monitor mode, deliver an alert for each newly-listed lot via the channels below.

## `webhookUrl` (type: `string`):

POST endpoint for new-lot alert payloads (Make / Zapier / n8n / custom).

## `slackWebhookUrl` (type: `string`):

Slack incoming-webhook URL for formatted new-lot cards.

## `emailRecipients` (type: `array`):

Email addresses for the new-lot digest (sent via apify/send-mail).

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

Proxy settings. Datacenter rotation is enough for this site.

## `requestConcurrency` (type: `integer`):

Max parallel requests for auction bid-gallery fetches.

## `diagnose` (type: `boolean`):

Dev only. Dumps raw browse + auction JSON to the key-value store (DEBUG\_BROWSE / DEBUG\_AUCTION) and logs the parsed shapes, then exits.

## Actor input object example

```json
{
  "searchType": "discover",
  "states": [
    "texas"
  ],
  "scrapeItems": true,
  "maxAuctions": 20,
  "maxItems": 0,
  "monitorMode": false,
  "alertOnNewLot": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

# Actor output Schema

## `lots` (type: `string`):

The dataset of scraped item lots (or auctions when item scraping is off).

# 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 = {
    "states": [
        "texas"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/maxsold-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 = { "states": ["texas"] }

# Run the Actor and wait for it to finish
run = client.actor("scrapersdelight/maxsold-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 '{
  "states": [
    "texas"
  ]
}' |
apify call scrapersdelight/maxsold-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "MaxSold Scraper & Estate Auction Monitor",
        "description": "Scrape MaxSold (maxsold.com) estate & downsizing auction items — bids, lots, photos, pickup info — by state or auction, or run on a schedule as a new-lot monitor with Slack/email/webhook alerts.",
        "version": "0.1",
        "x-build-id": "zgr8W3l1Nqc0xtvYN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapersdelight~maxsold-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapersdelight-maxsold-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/scrapersdelight~maxsold-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapersdelight-maxsold-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/scrapersdelight~maxsold-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapersdelight-maxsold-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": {
                    "searchType": {
                        "title": "Search type",
                        "enum": [
                            "discover",
                            "auctions"
                        ],
                        "type": "string",
                        "description": "How to find auctions. 'discover' browses MaxSold by US state(s); 'auctions' scrapes the specific auction IDs you provide (most precise).",
                        "default": "discover"
                    },
                    "states": {
                        "title": "States",
                        "type": "array",
                        "description": "Full lower-case US state names to browse, e.g. texas, california, new-york. Used when Search type = Discover. Note: MaxSold's browse returns its current set of auctions; results are filtered to your state(s) client-side.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "auctionIds": {
                        "title": "Auction IDs",
                        "type": "array",
                        "description": "Specific MaxSold auction IDs (the number in /auction/{id}/bidgallery). Used when Search type = Specific auction IDs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "scrapeItems": {
                        "title": "Scrape item lots",
                        "type": "boolean",
                        "description": "Output one row per ITEM lot (title, current bid, lot #, photos) by opening each auction's bid gallery. Turn OFF to output one row per AUCTION instead.",
                        "default": true
                    },
                    "maxAuctions": {
                        "title": "Max auctions per run",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap on how many auctions to open this run (0 = unlimited).",
                        "default": 20
                    },
                    "maxItems": {
                        "title": "Max items per run",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap on total item lots returned this run (0 = unlimited).",
                        "default": 0
                    },
                    "monitorMode": {
                        "title": "Monitor mode (new-lot watcher)",
                        "type": "boolean",
                        "description": "Recurring watcher: diff against the prior run's seen lots (per scope) and output/alert ONLY newly-listed lots. Pair with an Apify Schedule.",
                        "default": false
                    },
                    "alertOnNewLot": {
                        "title": "Alert on new lots",
                        "type": "boolean",
                        "description": "In monitor mode, deliver an alert for each newly-listed lot via the channels below.",
                        "default": true
                    },
                    "webhookUrl": {
                        "title": "Webhook URL",
                        "type": "string",
                        "description": "POST endpoint for new-lot alert payloads (Make / Zapier / n8n / custom)."
                    },
                    "slackWebhookUrl": {
                        "title": "Slack webhook URL",
                        "type": "string",
                        "description": "Slack incoming-webhook URL for formatted new-lot cards."
                    },
                    "emailRecipients": {
                        "title": "Email recipients",
                        "type": "array",
                        "description": "Email addresses for the new-lot digest (sent via apify/send-mail).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy settings. Datacenter rotation is enough for this site.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "requestConcurrency": {
                        "title": "Request concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Max parallel requests for auction bid-gallery fetches.",
                        "default": 4
                    },
                    "diagnose": {
                        "title": "Diagnostic mode (dev)",
                        "type": "boolean",
                        "description": "Dev only. Dumps raw browse + auction JSON to the key-value store (DEBUG_BROWSE / DEBUG_AUCTION) and logs the parsed shapes, then exits.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
