# TikTok Shop Scraper - Most Comprehensive (`kaix/tiktok-shop-scraper`) Actor

🔥 ~$1/1K shops 🔥 Scrape TikTok Shop product details, all reviews, and shop information. Region-aware URL parsing, built-in CAPTCHA solver, no external service needed.

- **URL**: https://apify.com/kaix/tiktok-shop-scraper.md
- **Developed by:** [Kai](https://apify.com/kaix) (community)
- **Categories:** E-commerce, Lead generation, SEO tools
- **Stats:** 3 total users, 1 monthly users, 36.4% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 shops

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

## TikTok Shop Scraper

Scrape product details, shop info, and customer reviews from any TikTok Shop listing. Built-in CAPTCHA solver: no third-party services required.

### Why use this scraper?

- Product data with 100+ fields: name, price, discount, SKUs (with GTIN barcode, structured weight and dimensions), images, shipping, promotions, categories, breadcrumbs
- Shop metadata: rating, sold count, followers, video count, verification badge ("OFFICIAL SHOP"), slogan, fulfillment/response/positive-feedback scores, region
- Seller compliance disclosure: legally-required business name and address
- Paginated customer reviews: text, rating, reviewer, images, display thumbnail, SKU linkage, verified-purchase flag
- Built-in CAPTCHA solver: no AntiCaptcha or 2Captcha needed
- Multi-region: US, TH, MY, ID, VN, PH, SG, GB, and more

### Use cases

- Track competitor prices, promotions, and SKU availability across regions
- Feed review text into sentiment analysis or NLP pipelines
- Build product databases from TikTok Shop listings
- Monitor brand ratings and review trends across shops

### How to use

#### Scrape a US product

```json
{
  "productUrls": ["https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count/1729398461940339414"],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

#### Scrape a Thai product

```json
{
  "productUrls": ["https://www.tiktok.com/shop/th/pdp/product/1729584293496195788"],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "TH"
  }
}
```

#### Scrape multiple products with a review cap

```json
{
  "productUrls": [
    "https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count/1729398461940339414",
    "https://www.tiktok.com/shop/th/pdp/product/1729584293496195788"
  ],
  "maxReviewsPerProduct": 100
}
```

### Input

| Parameter | Type | Default | Description |
|---|---|---|---|
| **productUrls** | string\[] | (required) | TikTok Shop product URLs or bare product IDs |
| **maxReviewsPerProduct** | number | 20 | Maximum reviews per product. Set to 0 for no limit (all reviews). You are billed per review. |
| **proxyConfiguration** | object | Apify Residential | Proxy settings. Use residential proxies matching the product's region. |

#### Supported URL formats

| Format | Example |
|---|---|
| US / global (slug) | `https://www.tiktok.com/shop/pdp/product-name-slug/1729398461940339414` |
| Southeast Asia (region in path) | `https://www.tiktok.com/shop/th/pdp/product/1729584293496195788` |
| Bare product ID | `1729398461940339414` (defaults to `th` region) |

Always paste the full URL from your browser for best results.

### Output

One record per product URL in the default dataset. Each record contains all product fields plus a `reviews` array with the scraped reviews nested inside.

#### Product details

```json
{
  "productId": "1729398461940339414",
  "name": "URO Women's Probiotics - 60 Count (Pack of 1) - Prebiotic and Probiotic Capsules for Healthy pH Balance and Odor",
  "soldCount": 1234613,
  "price": "2*",
  "unitPrice": "2*",
  "originalPrice": "3*",
  "discountFormat": "32%",
  "discountDecimal": "0.32",
  "reducedPriceFormat": "Saving $1*",
  "sellerDeduction": "7.00",
  "sellerDeductionDecimal": "7",
  "currencyName": "USD",
  "currencySymbol": "$",
  "images": [
    { "url": "https://p16-oec-general-useast5.ttcdn-us.com/...", "width": 2000, "height": 2000 }
  ],
  "categories": [
    { "id": "700645", "name": "Health", "level": 1, "isLeaf": false, "parentId": "0" },
    { "id": "700650", "name": "Vitamins, Minerals & Wellness Supplements", "level": 3, "isLeaf": false, "parentId": "700646" }
  ],
  "breadcrumbs": [
    { "name": "TikTok Shop", "link": "https://www.tiktok.com/shop" },
    { "name": "Health", "link": "https://www.tiktok.com/shop/c/health/700645" },
    { "name": "Vitamins, Minerals & Wellness Supplements", "link": "https://www.tiktok.com/shop/c/vitamins-minerals-wellness-supplements/700650" }
  ]
}
```

#### SKUs, shipping & delivery

```json
{
  "skus": [
    {
      "skuId": "1729398461940404950",
      "skuName": "CAP-VPURO-001",
      "availableQuantity": 509463,
      "price": "2*",
      "propertyPairs": [{ "name": "Specification", "value": "Default" }],
      "packageWeight": 255,
      "weight": "0.56",
      "weightUnit": 2,
      "dimensionLength": "6",
      "dimensionWidth": "12",
      "dimensionHeight": "10",
      "dimensionUnit": 2,
      "gtinType": 3,
      "gtinCode": "860008361769"
    }
  ],
  "shippingOptions": [
    { "deliveryName": "Standard shipping", "shippingFee": "0", "currency": "USD", "freeShipping": true }
  ],
  "deliveryMinDays": 6,
  "deliveryMaxDays": 9,
  "deliveryMinBusinessDays": 5,
  "deliveryMaxBusinessDays": 6,
  "fulfillable": true,
  "codAvailable": false
}
```

#### Shop metadata & compliance

```json
{
  "shopName": "O Positiv",
  "creatorName": "O Positiv",
  "shopSlogan": "Women's Health Prioritized ✨\nOBGYN Backed | Clinically Studied Ingredients",
  "shopIdentityLabel": "OFFICIAL SHOP",
  "shopRating": "4.6",
  "shopSoldCount": "2.8M",
  "shopSoldCountRaw": 2785006,
  "shopFollowersCount": 285767,
  "shopFollowersCountFormatted": "285.7K+",
  "shopVideoCount": 1313,
  "shopProductCount": 85,
  "shopLink": "https://www.tiktok.com/shop/store/o-positiv/7495222246125112022",
  "shopRegion": "US",
  "shopReviewCount": 227238,
  "shopFulfillmentScore": "96",
  "shopFulfillmentScoreRaw": 0.9649,
  "shopResponseScore": "0",
  "shopPositiveScore": "89",
  "shopPositiveScoreRaw": 0.8916,
  "businessName": "O Positiv, Inc",
  "businessAddress": "11740 San Vicente Boulevard, West Los Angeles, California, 90049, The United States",
  "totalReviews": 98321,
  "averageRating": 4.6,
  "ratingDistribution": { "1": 5075, "2": 1241, "3": 2858, "4": 6185, "5": 82962 },
  "scrapedAt": "2026-04-11T07:38:09.558Z"
}
```

#### Review record

```json
{
  "reviewId": "7508052672822658858",
  "productId": "1729398461940339414",
  "productName": "URO Women's Probiotics - 60 Count (Pack of 1)",
  "shopName": "O Positiv",
  "reviewRating": 5,
  "reviewText": "Good evening, I am satisfied with URO because in 3 days I got the results I was looking for.",
  "reviewerName": "D**d",
  "reviewTime": "2025-05-24T16:39:16.056Z",
  "reviewCountry": "US",
  "isVerifiedPurchase": true,
  "isIncentivizedReview": false,
  "reviewImages": ["https://p16-oec-general-useast5.ttcdn-us.com/..."],
  "reviewDisplayImage": "https://p16-oec-general-useast5.ttcdn-us.com/...",
  "skuId": "1729398461940404950",
  "skuSpecification": "Default",
  "scrapedAt": "2026-04-11T07:38:09.558Z"
}
```

### Proxy & region guide

TikTok Shop geo-restricts product access by IP. Use a residential proxy matching the product's country.

| Target region | Proxy setting | Without it |
|---|---|---|
| US (`/shop/pdp/...`) | `apifyProxyCountry: "US"` | Non-US IPs get an empty page. |
| Thailand (`/shop/th/...`) | `apifyProxyCountry: "TH"` | Works from SEA IPs. Higher CAPTCHA rate from other regions. |
| Other (MY, ID, VN, PH, SG, GB) | Match the country in the URL | Best results from a residential IP in the target country. |

#### Troubleshooting

| Symptom | Cause | Fix |
|---|---|---|
| Empty product name, shop, reviews | IP outside the product's region | Set `apifyProxyCountry` to match the region in the URL |
| Prices show as `"2*"` / `"3*"` | Expected: TikTok masks prices for all anonymous sessions regardless of proxy type | Not a bug. Use `discountFormat` and `sellerDeduction` for usable pricing signals |
| Repeated CAPTCHA failures | IP flagged | Use residential proxy; reduce concurrency |
| Run fails with an error about missing product data | TikTok changed their product page for this URL | Report the product URL — the scraper fails loudly rather than silently shipping stale data |

### Limitations

- TikTok can change their site at any time, which could temporarily break the scraper.
- Datacenter proxies are blocked aggressively. Use Apify Residential proxies.
- US product prices may be masked without a US residential proxy.
- The CAPTCHA solver is best-effort (up to 3 attempts per challenge). Residential proxies reduce CAPTCHA frequency.

# Actor input Schema

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

TikTok Shop product URLs (e.g. https://www.tiktok.com/shop/th/pdp/product/1729...) or bare numeric product IDs. The region is parsed from the URL path; bare IDs default to Thailand (th). Duplicates are removed automatically.

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

Cap on the number of reviews scraped per product. Set to 0 for no limit (scrape every available review). You are billed per review scraped — see the README for pricing.

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

Proxy used by the scraper. Apify Residential proxies are strongly recommended — TikTok blocks datacenter IPs aggressively.

## Actor input object example

```json
{
  "productUrls": [
    "https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count-with-lactobacillus-prebiotics/1729398461940339414"
  ],
  "maxReviewsPerProduct": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "productUrls": [
        "https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count-with-lactobacillus-prebiotics/1729398461940339414"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("kaix/tiktok-shop-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 = {
    "productUrls": ["https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count-with-lactobacillus-prebiotics/1729398461940339414"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("kaix/tiktok-shop-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 '{
  "productUrls": [
    "https://www.tiktok.com/shop/pdp/uro-womens-probiotics-60-count-with-lactobacillus-prebiotics/1729398461940339414"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call kaix/tiktok-shop-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "TikTok Shop Scraper - Most Comprehensive",
        "description": "🔥 ~$1/1K shops 🔥 Scrape TikTok Shop product details, all reviews, and shop information. Region-aware URL parsing, built-in CAPTCHA solver, no external service needed.",
        "version": "0.3",
        "x-build-id": "4XVZaT0b9dhn02FiS"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kaix~tiktok-shop-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kaix-tiktok-shop-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/kaix~tiktok-shop-scraper/runs": {
            "post": {
                "operationId": "runs-sync-kaix-tiktok-shop-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/kaix~tiktok-shop-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-kaix-tiktok-shop-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": [
                    "productUrls"
                ],
                "properties": {
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "TikTok Shop product URLs (e.g. https://www.tiktok.com/shop/th/pdp/product/1729...) or bare numeric product IDs. The region is parsed from the URL path; bare IDs default to Thailand (th). Duplicates are removed automatically.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max reviews per product",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Cap on the number of reviews scraped per product. Set to 0 for no limit (scrape every available review). You are billed per review scraped — see the README for pricing.",
                        "default": 20
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy used by the scraper. Apify Residential proxies are strongly recommended — TikTok blocks datacenter IPs aggressively.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
