# Chemist Warehouse AU – Products, Prices & Reviews (`abotapi/chemistwarehouse-com-au-scraper`) Actor

Scrape chemistwarehouse.com.au products with prices, RRP, discounts, stock, images, ingredients, directions, warnings, categories, and full customer reviews. Search by keyword or product URLs, with brand, category, price, in-stock filters, and price sorting.

- **URL**: https://apify.com/abotapi/chemistwarehouse-com-au-scraper.md
- **Developed by:** [Abot API](https://apify.com/abotapi) (community)
- **Categories:** E-commerce, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 1,000 products

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

## Chemist Warehouse Scraper - Products & Reviews

Scrape products and customer reviews from **Chemist Warehouse** (chemistwarehouse.com.au), Australia's largest pharmacy retailer. Search by keyword or scrape specific product pages, and get rich product data plus every individual customer review.

### What you get

For every product (44+ fields):

- **Identity** - name, brand, manufacturer, product type, SKU, product id, page URL, slug
- **Pricing** - price, RRP, discount %, currency
- **Availability** - in stock, click & collect, fast delivery, international shipping, marketplace
- **Pharmacy** - prescription type, schedule, mandatory statement, adult-product flag
- **Content** - description, ingredients, directions, warnings
- **Media** - main image + full image gallery
- **Categories** - full category path and category keys
- **Ratings** - average rating and review count
- **Reviews** (optional) - every individual review with **rating, title, author, body text, date, and helpful-vote counts**, plus the star-rating breakdown and true review total
- **Extras** - dimensions (H/W/D/weight), pack quantity, multipack quantity, product flags, created date, scrape timestamp

### Input

#### Mode

- **Search** - run one or more keyword queries with optional brand, category, price and in-stock filters, and price sorting.
- **URL** - provide specific Chemist Warehouse product page URLs to scrape.

#### Search options

| Field | Description |
|---|---|
| Search keywords | One or more keywords, e.g. `panadol`, `vitamin c`. Leave empty to browse the whole catalogue with the filters below. |
| Brand | Restrict to one brand, e.g. `Blackmores` (exact spelling). |
| Category | Restrict to one category, e.g. `Vitamins & Supplements` (exact spelling). |
| Minimum / Maximum price (AUD) | Price range in whole dollars. |
| In-stock only | Exclude out-of-stock products. |
| Sort | Relevance (default), price low→high, or price high→low. |

#### Reviews

| Field | Description |
|---|---|
| Fetch reviews | Collect individual customer reviews for each product. |
| Max reviews per product | Cap on reviews per product. Leave empty for all reviews. |

#### Limits

- **Max items** is the run cap (default 20). Set to 0 for no item limit.
- **Max pages** limits result pages walked per query. Leave empty (0) for no page limit; the run stops at **Max items**.

### Output example

```json
{
  "name": "Blackmores Bio C 1000 150 Tablets",
  "brand": "Blackmores",
  "sku": "2720171",
  "url": "https://www.chemistwarehouse.com.au/buy/57134-blackmores-bio-c-1000-150-tablets",
  "price": 21.99,
  "rrp": 48.99,
  "discountPercent": 55.11,
  "currency": "AUD",
  "isInStock": true,
  "rating": 4.6286,
  "reviewCount": 35,
  "categories": ["Chemist Warehouse Australia", "Categories", "Vitamins & Supplements"],
  "ingredients": "Ascorbic Acid (Vitamin C) ...",
  "directions": "Adults take 1 tablet a day ...",
  "warnings": "Vitamin supplements should not replace ...",
  "images": ["https://static.chemistwarehouse.com.au/..."],
  "reviews": [
    {
      "rating": 5,
      "title": "Great product",
      "author": "belly76",
      "content": "Works really well ...",
      "createdAt": "2025-11-20T00:44:12.000+00:00",
      "positiveFeedbackCount": 2,
      "negativeFeedbackCount": 0
    }
  ]
}
````

### Proxy & plan

Apify Proxy is recommended and enabled by default. The Actor runs on any Apify plan. If results look incomplete, switch the Apify Proxy group in the Proxy input to a higher-reliability option.

### Pricing

This Actor uses pay-per-event pricing: a one-time start charge, a per-product charge, and a per-product reviews-enrichment charge that applies only when **Fetch reviews** is enabled.

### Send results into your apps (MCP connectors)

Results can be pushed into your apps and workflows via Apify's integrations and MCP connectors.

# Actor input Schema

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

How to collect products. Search runs keyword/filter queries. URL scrapes specific product pages you provide.

## `queries` (type: `array`):

Search mode only. One or more keywords, e.g. "panadol", "vitamin c". Leave empty to browse the whole catalogue with the filters below.

## `brand` (type: `string`):

Search mode only. Restrict results to one brand, e.g. "Blackmores" or "Panadol" (exact spelling as shown on site).

## `category` (type: `string`):

Search mode only. Restrict results to one category, e.g. "Vitamins & Supplements" or "Pain Relief" (exact spelling as shown on site).

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

Search mode only. Only products priced at or above this amount, in whole dollars.

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

Search mode only. Only products priced at or below this amount, in whole dollars.

## `inStockOnly` (type: `boolean`):

Search mode only. Exclude out-of-stock products.

## `sort` (type: `string`):

Search mode only. Result ordering.

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

URL mode only. Chemist Warehouse product page URLs, e.g. https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets

## `fetchReviews` (type: `boolean`):

Fetch individual customer reviews (rating, title, author, body, date, helpful counts) for each product. Adds a review-enrichment charge per product.

## `maxReviewsPerProduct` (type: `integer`):

Cap on reviews collected per product when Fetch reviews is on. Leave empty for all reviews.

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

Maximum number of products to collect. This is the run cap. Set to 0 for no item limit (the run then stops at Max pages).

## `maxPages` (type: `integer`):

Maximum number of search result pages to walk per query. Leave empty (0) for no page limit; the run stops at Max items.

## `proxy` (type: `object`):

Proxy configuration. Apify Proxy is recommended.

## `mcpConnectors` (type: `array`):

Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify Settings, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON; the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com).

## `notionParentPageUrl` (type: `string`):

URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors.

## `maxNotifyListings` (type: `integer`):

Cap on items written to each connector per run. Does not affect the dataset.

## Actor input object example

```json
{
  "mode": "search",
  "queries": [
    "vitamin c"
  ],
  "inStockOnly": false,
  "sort": "relevance",
  "productUrls": [
    "https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets"
  ],
  "fetchReviews": false,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "maxPages": 0,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

# 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 = {
    "queries": [
        "vitamin c"
    ],
    "productUrls": [
        "https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/chemistwarehouse-com-au-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 = {
    "queries": ["vitamin c"],
    "productUrls": ["https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets"],
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/chemistwarehouse-com-au-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 '{
  "queries": [
    "vitamin c"
  ],
  "productUrls": [
    "https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets"
  ]
}' |
apify call abotapi/chemistwarehouse-com-au-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Chemist Warehouse AU – Products, Prices & Reviews",
        "description": "Scrape chemistwarehouse.com.au products with prices, RRP, discounts, stock, images, ingredients, directions, warnings, categories, and full customer reviews. Search by keyword or product URLs, with brand, category, price, in-stock filters, and price sorting.",
        "version": "1.0",
        "x-build-id": "hfP1cEzdt4rAa5yTP"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~chemistwarehouse-com-au-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-chemistwarehouse-com-au-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/abotapi~chemistwarehouse-com-au-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-chemistwarehouse-com-au-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/abotapi~chemistwarehouse-com-au-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-chemistwarehouse-com-au-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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "How to collect products. Search runs keyword/filter queries. URL scrapes specific product pages you provide.",
                        "default": "search"
                    },
                    "queries": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "Search mode only. One or more keywords, e.g. \"panadol\", \"vitamin c\". Leave empty to browse the whole catalogue with the filters below.",
                        "default": [
                            "vitamin c"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "brand": {
                        "title": "Brand",
                        "type": "string",
                        "description": "Search mode only. Restrict results to one brand, e.g. \"Blackmores\" or \"Panadol\" (exact spelling as shown on site)."
                    },
                    "category": {
                        "title": "Category",
                        "type": "string",
                        "description": "Search mode only. Restrict results to one category, e.g. \"Vitamins & Supplements\" or \"Pain Relief\" (exact spelling as shown on site)."
                    },
                    "minPrice": {
                        "title": "Minimum price (AUD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Search mode only. Only products priced at or above this amount, in whole dollars."
                    },
                    "maxPrice": {
                        "title": "Maximum price (AUD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Search mode only. Only products priced at or below this amount, in whole dollars."
                    },
                    "inStockOnly": {
                        "title": "In-stock only",
                        "type": "boolean",
                        "description": "Search mode only. Exclude out-of-stock products.",
                        "default": false
                    },
                    "sort": {
                        "title": "Sort",
                        "enum": [
                            "relevance",
                            "price_asc",
                            "price_desc"
                        ],
                        "type": "string",
                        "description": "Search mode only. Result ordering.",
                        "default": "relevance"
                    },
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "URL mode only. Chemist Warehouse product page URLs, e.g. https://www.chemistwarehouse.com.au/buy/145683/panadol-500mg-16-tablets",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchReviews": {
                        "title": "Fetch reviews",
                        "type": "boolean",
                        "description": "Fetch individual customer reviews (rating, title, author, body, date, helpful counts) for each product. Adds a review-enrichment charge per product.",
                        "default": false
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max reviews per product",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Cap on reviews collected per product when Fetch reviews is on. Leave empty for all reviews.",
                        "default": 20
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of products to collect. This is the run cap. Set to 0 for no item limit (the run then stops at Max pages).",
                        "default": 20
                    },
                    "maxPages": {
                        "title": "Max pages",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of search result pages to walk per query. Leave empty (0) for no page limit; the run stops at Max items.",
                        "default": 0
                    },
                    "proxy": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy configuration. Apify Proxy is recommended.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "mcpConnectors": {
                        "title": "Pipe results into your apps (optional)",
                        "type": "array",
                        "description": "Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify Settings, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON; the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com)."
                    },
                    "notionParentPageUrl": {
                        "title": "Notion parent page (Notion connector only)",
                        "type": "string",
                        "description": "URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors."
                    },
                    "maxNotifyListings": {
                        "title": "Max items to export per connector",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Cap on items written to each connector per run. Does not affect the dataset.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
