# Chewy.com Scraper (`arcana/chewy-com-scraper`) Actor

Search Chewy.com by name and scrape full product pages (metadata, rating, reviews, categories, variant links, images).

- **URL**: https://apify.com/arcana/chewy-com-scraper.md
- **Developed by:** [Arcana](https://apify.com/arcana) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 products

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Chewy.com Scraper 🐾

Scrape [Chewy.com](https://www.chewy.com) by **product name** or **URL** and get the
**full product page** — not just a search listing. Titles, both prices (one-time +
Autoship), deal flags, ratings, reviews count, every package **variant** (size &
color, with links), the complete **image gallery**, specifications, dimensions,
GTIN/barcode, the full description and the "About This Item" blocks (care
**Instructions** and **Size** charts).

No proxy, anti-bot, or captcha setup — it's all handled for you. Just send queries.

### Features

- 🔎 **Search by name** — pass product names and get the matching products.
- 📄 **Full product detail** — scrapes the actual product page, not only the search card.
- 💰 **Both prices** — one-time ("buy once") **and** Autoship (subscription), with
  discount %, list/strike price and price-per-unit.
- 🎁 **Deal & status flags** — `isDeal` plus `prescription`, `giftCard`, `bundle`,
  `new`, `discontinued`, `chewyExclusive`.
- 🧩 **All variants** — every size/color pack with its own `productId` + URL; optionally
  scrape each variant in full.
- 🖼️ **Full image gallery**, ⭐ **rating + review count**, 🏷️ **GTIN/barcode**.
- 📋 **Specifications, dimensions & "About This Item"** — including care
  **Instructions** and **Size**-chart tables (as markdown).
- 🧱 **Breadcrumb categories**, 📝 **full description** (the "See more" Details text).
- 🚫 **Exclusions** — skip products by id or by keyword.
- 🔗 **Direct URLs** — feed product (`/dp/...`) or search (`/s?query=...`) URLs.

### Input

| Field | Type | Description |
| --- | --- | --- |
| `queries` | string[] | Product names to search for. Each becomes a Chewy search. |
| `productIds` | string[] | Scrape specific products by id (e.g. `141437`) — no URL needed. |
| `startUrls` | object[] | Direct Chewy URLs. `/dp/` → product, `/s?query=` → search. |
| `maxItems` | integer | Maximum number of products to scrape (0 = no limit). |
| `excludeProductIds` | string[] | Skip these products, by id (e.g. `141437`) or `/dp/` URL. |
| `excludeKeywords` | string[] | Skip products whose name contains any of these (case-insensitive). |
| `scrapeVariants` | boolean | Also scrape every package variant of each product as its own item. |
| `includeSearchResults` | boolean | Also save the lighter search-result cards (off by default). |
| `maxConcurrency` | integer | Parallel requests (default 5). |

#### Example input

```json
{
  "queries": ["Pedigree Complete Nutrition Roasted"],
  "productIds": ["141437", "371139"],
  "maxItems": 20,
  "excludeKeywords": ["Puppy", "Wet Food"]
}
````

### Output

By default the dataset holds **one full record per product** (`type: "product"`):

| Field | Description |
| --- | --- |
| `productId`, `url`, `title`, `brand` | Identity |
| `price`, `autoshipPrice`, `autoshipDiscountPct`, `listPrice`, `perUnitPrice`, `currency` | Pricing (one-time + subscription) |
| `isDeal`, `isNew` | Headline flags (also mirrored inside `flags`) |
| `flags` | All boolean flags in one object: `{deal, new, ad, prescription, giftCard, bundle, discontinued, chewyExclusive, rx}` |
| `rating`, `reviewCount`, `inStock` | Popularity & availability |
| `gtin` | Barcode (UPC/EAN) |
| `categories[]` | Breadcrumbs `{name, url}` |
| `images[]` | Full image gallery |
| `variants[]` | Package variants `{label, productId, url}` |
| `specifications{}` | Name/value specs (Made In, Lifestage, …) |
| `dimensions` | Physical size string |
| `aboutThisItem[]` | "About This Item" blocks `{name, content}` — e.g. **Instructions** and **Size**; `content` is **HTML** (lists as `<ul>`, the size chart as a `<table>`) |
| `description` | Full product description |

Enable `includeSearchResults` to also save search cards (`type: "search_result"`):
`productId, url, brand, name, price, autoshipPrice, autoshipDiscountPct, listPrice,
listDiscountPct, pricePerUnit, currency, rating, reviewCount, image, inStock, isDeal,
isNew, isAd, flags`.

#### Example product record

```json
{
  "type": "product",
  "productId": "371139",
  "url": "https://www.chewy.com/dp/371139",
  "title": "Green Lifestyle Printed Reusable Cat & Dog Pee Pads, Blue & White, 30 x 34-in, 2 count",
  "brand": "Green Lifestyle",
  "price": 20.49,
  "autoshipPrice": 19.47,
  "autoshipDiscountPct": 5,
  "listPrice": null,
  "perUnitPrice": "$10.25",
  "currency": "USD",
  "isDeal": true,
  "isNew": false,
  "flags": { "deal": true, "new": false, "ad": false, "prescription": false, "giftCard": false, "bundle": false, "discontinued": false, "chewyExclusive": false, "rx": false },
  "gtin": "672288001279",
  "rating": 4.65,
  "reviewCount": 973,
  "inStock": true,
  "categories": [{ "name": "Dog Supplies", "url": "https://www.chewy.com/b/dog-288" }],
  "images": ["https://image.chewy.com/.../068cd739._AC_SS600_V1_.jpg"],
  "variants": [
    { "label": "...34 x 36-in, 2 count", "productId": "371143", "url": "https://www.chewy.com/.../dp/371143" }
  ],
  "specifications": { "Made In": "China", "Potty Feature": "Washable" },
  "dimensions": "30 x 34 x 0.3 inches",
  "aboutThisItem": [
    { "name": "Instructions", "content": "<ul>\n<li>Washing instructions: Machine wash, rinse well. Tumble dry, remove promptly.</li>\n<li>Do not use fabric softener.</li>\n</ul>" },
    { "name": "Size", "content": "<table>\n<thead><tr><th>Size</th><th>Length</th><th>Width</th></tr></thead>\n<tbody><tr><td>30 x 34-in</td><td>30 inches</td><td>34 inches</td></tr></tbody>\n</table>" }
  ],
  "description": "Protect your home from a variety of pet messes…"
}
```

The dataset has ready-made **Products** and **Search results** views in the Console.

### Use cases

- **Price & deal monitoring** — track one-time vs. Autoship prices, discounts and deals.
- **Catalog & MAP compliance** — full specs, variants, GTINs and images per product.
- **Market research** — ratings, review counts and category coverage by brand.
- **Content & feeds** — ready product data (description, images, size charts) for listings.

### FAQ

**Do I need proxies or an anti-bot solution?** No. Chewy's bot protection is handled
internally — you only provide queries/URLs.

**Does it scrape full product pages or just search listings?** Full product pages,
including variants, specifications, images and the "About This Item" sections — not
only the search card.

**Can it get every pack size / color?** Yes — all variants are listed with links, and
`scrapeVariants` will scrape each one as a full product.

**How many products can I scrape?** Use `maxItems` to cap a run; 0 means no limit.

**Is a product on sale?** The `isDeal` flag and the discount-percentage fields tell you.

**How do I exclude products?** Use `excludeProductIds` (by id/URL) or `excludeKeywords`
(by name).

# Actor input Schema

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

Product names to search for on Chewy. Each becomes a https://www.chewy.com/s?query=... request.

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

Direct Chewy URLs. Product pages (containing /dp/) are scraped as products; search pages (/s?query=) are scraped as search results.

## `productIds` (type: `array`):

Scrape specific products by Chewy product id (e.g. 141437) — no URL needed. A /dp/ URL is also accepted. Each is scraped as a full product.

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

Maximum number of product pages to scrape (0 = no limit). Each Web Unblocker request is billed, so keep this sane.

## `excludeProductIds` (type: `array`):

Products to skip, by Chewy product id (e.g. 141437) or full /dp/ URL. Skipped in both search results and product scraping.

## `excludeKeywords` (type: `array`):

Skip any product whose name contains one of these (case-insensitive substring), e.g. "Puppy" or "Wet Food".

## `scrapeVariants` (type: `boolean`):

If enabled, each package variant (size/flavor) found on a product page is also enqueued and scraped as a full product.

## `includeSearchResults` (type: `boolean`):

By default only full product pages are saved. Enable to also save the lighter search-result cards (type=search\_result) in the dataset.

## `maxConcurrency` (type: `integer`):

Parallel requests. Higher = faster but more load; the default is tuned for the built-in unblocker plan.

## Actor input object example

```json
{
  "queries": [
    "Pedigree Complete Nutrition Roasted"
  ],
  "startUrls": [
    {
      "url": "https://www.chewy.com/pedigree-complete-nutrition-grilled/dp/141437"
    }
  ],
  "productIds": [],
  "maxItems": 0,
  "excludeProductIds": [],
  "excludeKeywords": [],
  "scrapeVariants": false,
  "includeSearchResults": false,
  "maxConcurrency": 5
}
```

# Actor output Schema

## `results` (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": [
        "Pedigree Complete Nutrition Roasted"
    ],
    "startUrls": [
        {
            "url": "https://www.chewy.com/pedigree-complete-nutrition-grilled/dp/141437"
        }
    ],
    "productIds": [],
    "excludeProductIds": [],
    "excludeKeywords": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("arcana/chewy-com-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": ["Pedigree Complete Nutrition Roasted"],
    "startUrls": [{ "url": "https://www.chewy.com/pedigree-complete-nutrition-grilled/dp/141437" }],
    "productIds": [],
    "excludeProductIds": [],
    "excludeKeywords": [],
}

# Run the Actor and wait for it to finish
run = client.actor("arcana/chewy-com-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": [
    "Pedigree Complete Nutrition Roasted"
  ],
  "startUrls": [
    {
      "url": "https://www.chewy.com/pedigree-complete-nutrition-grilled/dp/141437"
    }
  ],
  "productIds": [],
  "excludeProductIds": [],
  "excludeKeywords": []
}' |
apify call arcana/chewy-com-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Chewy.com Scraper",
        "description": "Search Chewy.com by name and scrape full product pages (metadata, rating, reviews, categories, variant links, images).",
        "version": "0.1",
        "x-build-id": "blGwVdzNBb1KbOEUk"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/arcana~chewy-com-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-arcana-chewy-com-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/arcana~chewy-com-scraper/runs": {
            "post": {
                "operationId": "runs-sync-arcana-chewy-com-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/arcana~chewy-com-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-arcana-chewy-com-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": {
                    "queries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Product names to search for on Chewy. Each becomes a https://www.chewy.com/s?query=... request.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Direct Chewy URLs. Product pages (containing /dp/) are scraped as products; search pages (/s?query=) are scraped as search results.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "productIds": {
                        "title": "Product IDs",
                        "type": "array",
                        "description": "Scrape specific products by Chewy product id (e.g. 141437) — no URL needed. A /dp/ URL is also accepted. Each is scraped as a full product.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max products",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of product pages to scrape (0 = no limit). Each Web Unblocker request is billed, so keep this sane.",
                        "default": 0
                    },
                    "excludeProductIds": {
                        "title": "Exclude product IDs",
                        "type": "array",
                        "description": "Products to skip, by Chewy product id (e.g. 141437) or full /dp/ URL. Skipped in both search results and product scraping.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "excludeKeywords": {
                        "title": "Exclude by keyword",
                        "type": "array",
                        "description": "Skip any product whose name contains one of these (case-insensitive substring), e.g. \"Puppy\" or \"Wet Food\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "scrapeVariants": {
                        "title": "Scrape variant pages too",
                        "type": "boolean",
                        "description": "If enabled, each package variant (size/flavor) found on a product page is also enqueued and scraped as a full product.",
                        "default": false
                    },
                    "includeSearchResults": {
                        "title": "Also save raw search cards",
                        "type": "boolean",
                        "description": "By default only full product pages are saved. Enable to also save the lighter search-result cards (type=search_result) in the dataset.",
                        "default": false
                    },
                    "maxConcurrency": {
                        "title": "Max concurrent requests",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Parallel requests. Higher = faster but more load; the default is tuned for the built-in unblocker plan.",
                        "default": 5
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
