# ComplaintsBoard Reviews Scraper (`automation-lab/complaintsboard-reviews-scraper`) Actor

Scrape public ComplaintsBoard complaints, reviews, ratings, dates, authors, statuses, and company complaint counts for brand monitoring.

- **URL**: https://apify.com/automation-lab/complaintsboard-reviews-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Marketing, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## ComplaintsBoard Reviews Scraper

Scrape public company complaint pages from ComplaintsBoard and export complaint text, ratings, dates, authors, statuses, recommendations, and company-level review metrics.

### What does ComplaintsBoard Reviews Scraper do?

ComplaintsBoard Reviews Scraper collects public complaint and review records from `complaintsboard.com` company pages.

It is built for reputation-monitoring workflows where teams need structured complaint data instead of manual copy-and-paste from the website.

The actor uses HTTP requests and server-rendered HTML parsing.

No browser automation is required for the default workflow.

No login is required for public complaint pages.

You provide one or more ComplaintsBoard URLs.

The actor follows pagination.

It saves each complaint or review as one dataset item.

### Who is it for?

#### Reputation agencies

Track public complaints about brands, marketplaces, banks, airlines, telecoms, retailers, and service providers.

#### Customer support teams

Find recurring issues that customers publish outside your owned support channels.

#### Compliance teams

Monitor complaint volume, unresolved problems, and potentially risky language.

#### Market researchers

Compare complaint themes across competitors in the same industry.

#### Data teams

Feed complaint records into BI, warehouses, dashboards, or alerting systems.

### Why use this actor?

✅ Export complaint pages into structured JSON, CSV, Excel, XML, or RSS.

✅ Capture company-level metrics and per-complaint fields in the same row.

✅ Crawl multiple company pages in one run.

✅ Limit pages and records to control costs.

✅ Optionally fetch complaint detail pages for fuller text.

✅ Use Apify integrations, API, webhooks, and schedules.

### What data can I extract?

| Field | Description |
| --- | --- |
| `companyName` | Company/profile name from the ComplaintsBoard page |
| `companyUrl` | Canonical company URL |
| `companyRating` | Aggregate rating when displayed |
| `reviewCount` | Public review count from page metadata |
| `complaintCount` | Public complaint count from page metadata |
| `itemType` | Review/complaint label visible on the card |
| `title` | Complaint or review title |
| `body` | Complaint/review text |
| `date` | Published date |
| `time` | Published time when visible |
| `author` | Public author name |
| `authorLocation` | Public author location |
| `status` | Visible status labels |
| `rating` | Per-item rating when available |
| `category` | Category when visible |
| `recommendation` | Customer recommendation text when present |
| `sourceUrl` | Page where the item was found |
| `detailUrl` | Complaint detail URL |
| `pageNumber` | Paginated list page number |

### How much does it cost to scrape ComplaintsBoard complaints?

The actor uses pay-per-event pricing.

There is a small `$0.005` run-start event.

Each saved complaint/review is charged as one result event.

| Apify plan tier | Price per complaint/review | Approx. 1,000 records |
| --- | ---: | ---: |
| Free | $0.000044635 | $0.0446 |
| Bronze | $0.000038813 | $0.0388 |
| Silver | $0.000030274 | $0.0303 |
| Gold | $0.000023288 | $0.0233 |
| Platinum | $0.000015525 | $0.0155 |
| Diamond | $0.000010868 | $0.0109 |

Because the default scraper is HTTP-only, it is designed to be inexpensive for typical monitoring workloads.

Use low `maxItems` and `maxPagesPerCompany` values for test runs.

Increase limits after checking the first dataset output.

### Input configuration

#### `startUrls`

Add ComplaintsBoard company URLs such as:

`https://www.complaintsboard.com/amazon-b109438`

You can add more than one URL.

The actor also accepts complaint detail URLs, although company pages are the recommended starting point.

#### `maxItems`

Maximum number of complaint/review records to save across all URLs.

The default is intentionally small for a cheap first run.

#### `maxPagesPerCompany`

Maximum number of paginated pages to crawl per start URL.

Use this to control crawl depth.

#### `includeComplaintDetails`

When enabled, the actor fetches individual complaint detail pages to enrich or expand text.

This produces more complete records but requires more requests.

### Example input

```json
{
  "startUrls": [
    { "url": "https://www.complaintsboard.com/amazon-b109438" }
  ],
  "maxItems": 20,
  "maxPagesPerCompany": 3,
  "includeComplaintDetails": false
}
````

### Example output

```json
{
  "companyName": "Amazon Shoppers",
  "companyUrl": "https://www.complaintsboard.com/amazon-b109438",
  "companyRating": 1.2,
  "reviewCount": 15,
  "complaintCount": 2102,
  "itemType": "New review",
  "title": "Amazon slow ships",
  "body": "Customer complaint text...",
  "date": "Jun 08, 2026",
  "time": "11:25 am UTC",
  "author": "kyokushinkai",
  "authorLocation": "Thomasville, US",
  "status": "New review, Featured review",
  "rating": 1,
  "category": null,
  "recommendation": null,
  "sourceUrl": "https://www.complaintsboard.com/amazon-b109438",
  "detailUrl": "https://www.complaintsboard.com/amazoncom-amazon-slow-ships-c2014214",
  "pageNumber": 1
}
```

### How to scrape ComplaintsBoard in 5 steps

1. Open the actor on Apify.

2. Paste one or more ComplaintsBoard company URLs.

3. Set `maxItems` and `maxPagesPerCompany`.

4. Run the actor.

5. Download the dataset or connect it to your workflow.

### Tips for best results

Start with one company URL.

Keep `maxItems` low for the first run.

Review the output fields.

Then increase pagination and record limits.

Enable detail-page fetching only when you need fuller complaint text.

Use Apify schedules for recurring monitoring.

Use webhooks to notify your team when new data is ready.

### Integrations

You can connect this actor to Google Sheets.

You can send results to Slack through a webhook.

You can store output in S3, BigQuery, Snowflake, or your own API.

You can run it on a daily or weekly Apify schedule.

You can combine it with sentiment analysis, deduplication, or alerting actors.

### API usage

#### Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/complaintsboard-reviews-scraper').call({
  startUrls: [{ url: 'https://www.complaintsboard.com/amazon-b109438' }],
  maxItems: 20,
  maxPagesPerCompany: 3
});
console.log(run.defaultDatasetId);
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/complaintsboard-reviews-scraper').call(run_input={
    'startUrls': [{'url': 'https://www.complaintsboard.com/amazon-b109438'}],
    'maxItems': 20,
    'maxPagesPerCompany': 3,
})
print(run['defaultDatasetId'])
```

#### cURL

```bash
curl -X POST 'https://api.apify.com/v2/acts/automation-lab~complaintsboard-reviews-scraper/runs?token=YOUR_APIFY_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"startUrls":[{"url":"https://www.complaintsboard.com/amazon-b109438"}],"maxItems":20,"maxPagesPerCompany":3}'
```

### MCP usage

Use this actor from MCP-compatible tools through Apify MCP Server.

MCP URL:

`https://mcp.apify.com/?tools=automation-lab/complaintsboard-reviews-scraper`

Claude Code setup:

```bash
claude mcp add apify-complaintsboard "https://mcp.apify.com/?tools=automation-lab/complaintsboard-reviews-scraper"
```

Claude Desktop JSON configuration:

```json
{
  "mcpServers": {
    "apify-complaintsboard": {
      "url": "https://mcp.apify.com/?tools=automation-lab/complaintsboard-reviews-scraper"
    }
  }
}
```

MCP example prompts:

- "Run the ComplaintsBoard Reviews Scraper through MCP for this company URL and summarize the top recurring customer issues."

- "Use MCP to collect the latest 50 ComplaintsBoard complaints for this brand and group them by complaint theme."

- "Use the Apify ComplaintsBoard MCP tool to scrape this brand, then create a table with complaint title, date, status, rating, and a one-sentence issue theme."

### Scheduling

For brand monitoring, schedule the actor to run daily or weekly.

Use a fixed list of company URLs.

Export only new records in your downstream system by deduplicating on `detailUrl`.

### Data quality notes

ComplaintsBoard pages are public web pages.

Some fields may be missing when the website does not display them.

Author names and locations are captured only when publicly visible.

Dates are emitted as the text displayed by the website.

The actor does not infer or rewrite complaint content.

### Limits

The actor only scrapes publicly accessible pages.

It does not log in.

It does not post comments.

It does not submit complaints.

It does not bypass paywalls, CAPTCHAs, or private data restrictions.

### FAQ

#### Does this actor require a ComplaintsBoard account?

No. It reads public company and complaint pages only.

#### Can I monitor several brands in one run?

Yes. Add multiple company URLs to `startUrls` and set a combined `maxItems` limit.

### Troubleshooting

#### Why did I get fewer items than requested?

The company may have fewer visible records within your `maxPagesPerCompany` limit.

Increase `maxPagesPerCompany` or add more company URLs.

#### Why is `body` shorter than expected?

Enable `includeComplaintDetails` to fetch individual detail pages for fuller text.

#### Why are some fields null?

ComplaintsBoard does not display every field on every complaint card.

Null values mean the field was not visible in public HTML.

### Legality and responsible use

This actor extracts publicly available web data.

You are responsible for using the results in compliance with applicable law, platform terms, and privacy rules.

Avoid collecting or processing personal data unless you have a valid legal basis.

Respect takedown, deletion, and retention requirements in your jurisdiction.

### Related scrapers

Try other automation-lab review and reputation scrapers on Apify:

- Trustpilot Scraper

- BBB Scraper

- Reviews.io Scraper

- Sitejabber Scraper

- Google Maps review and lead actors

### Changelog

#### 0.1

Initial HTTP-only ComplaintsBoard company complaint scraper.

### Support

If a page layout changes or a public company page stops working, open an Apify issue with the input URL and run ID.

### Development

```bash
npm install
npm run build
timeout 120 apify run
```

### Storage

Results are saved to the default Apify dataset.

You can download results from the Apify Console or access them through the Dataset API.

### Performance

The actor uses lightweight HTTP requests.

It is designed for low memory usage.

The default memory is 256 MB.

### Version

Current development version: `0.1`.

# Actor input Schema

## `startUrls` (type: `array`):

ComplaintsBoard company pages such as https://www.complaintsboard.com/amazon-b109438. Complaint detail URLs are also accepted.

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

Maximum number of complaint/review records to save across all start URLs.

## `maxPagesPerCompany` (type: `integer`):

How many paginated ComplaintsBoard list pages to crawl for each start URL.

## `includeComplaintDetails` (type: `boolean`):

Open individual complaint pages to enrich or expand complaint body text. Slower but more complete.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.complaintsboard.com/amazon-b109438"
    }
  ],
  "maxItems": 20,
  "maxPagesPerCompany": 3,
  "includeComplaintDetails": false
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://www.complaintsboard.com/amazon-b109438"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/complaintsboard-reviews-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 = { "startUrls": [{ "url": "https://www.complaintsboard.com/amazon-b109438" }] }

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/complaintsboard-reviews-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 '{
  "startUrls": [
    {
      "url": "https://www.complaintsboard.com/amazon-b109438"
    }
  ]
}' |
apify call automation-lab/complaintsboard-reviews-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ComplaintsBoard Reviews Scraper",
        "description": "Scrape public ComplaintsBoard complaints, reviews, ratings, dates, authors, statuses, and company complaint counts for brand monitoring.",
        "version": "0.1",
        "x-build-id": "DdUieZ7oLhnKIccgt"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~complaintsboard-reviews-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-complaintsboard-reviews-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/automation-lab~complaintsboard-reviews-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-complaintsboard-reviews-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/automation-lab~complaintsboard-reviews-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-complaintsboard-reviews-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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Company or complaint URLs",
                        "type": "array",
                        "description": "ComplaintsBoard company pages such as https://www.complaintsboard.com/amazon-b109438. Complaint detail URLs are also accepted.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Maximum complaints/reviews",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of complaint/review records to save across all start URLs.",
                        "default": 20
                    },
                    "maxPagesPerCompany": {
                        "title": "Maximum pages per company",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "How many paginated ComplaintsBoard list pages to crawl for each start URL.",
                        "default": 3
                    },
                    "includeComplaintDetails": {
                        "title": "Fetch complaint detail pages",
                        "type": "boolean",
                        "description": "Open individual complaint pages to enrich or expand complaint body text. Slower but more complete.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
