# TikTok Shop Product Scraper (`khadinakbar/tiktok-shop-scraper`) Actor

All-in-one TikTok Shop scraper. Auto-detects search keyword, product URL, shop URL, or category slug. Returns price, variants, seller, sold count, ratings, reviews. MCP-ready. $0.005/product, $0.001/review.

- **URL**: https://apify.com/khadinakbar/tiktok-shop-scraper.md
- **Developed by:** [Khadin Akbar](https://apify.com/khadinakbar) (community)
- **Categories:** E-commerce, Automation, MCP servers
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 product founds

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

## TikTok Shop Product Scraper — Prices, Variants, Reviews (US)

**Scrape TikTok Shop product pages by URL** and get back full product details: price, currency, variants with SKU-level stock, seller info, sold count, images, and (optionally) reviews. Built on PlaywrightCrawler + Apify Residential US proxy, returning ~25 fields per product. MCP-ready output for AI agents.

> **v0.1 scope:** product URL → product record. Search keyword, shop catalog, and category browsing modes are on the v0.2 roadmap (they require additional anti-bot bypass — `www.tiktok.com/shop/s/...` and `www.tiktok.com/shop/store/...` are heavily challenged).

### What you get per product

| Field | Example |
|---|---|
| `productId` | `1731936406579351560` |
| `productUrl` | `https://shop.tiktok.com/view/product/1731936406579351560` |
| `title` | `POP MART SKULLPANDA × Wednesday Plush` |
| `price` | `45.99` |
| `currency` | `USD` |
| `soldCount` | `10144` |
| `images[]` | 5+ full-resolution image URLs |
| `variants[]` | `[{skuId, label: "Single", stock: 24}]` |
| `shopId` / `shopName` / `shopUrl` | `7495316114727995400` / `POPMART US SHOP` / store URL |
| `_warnings` | empty `[]` on clean records |
| `scrapedAt` | ISO 8601 timestamp |

Optional review records (when `includeReviews: true`):

| Field | Example |
|---|---|
| `reviewId`, `reviewerName`, `reviewRating`, `reviewText`, `reviewDate`, `reviewMediaUrls[]` | Full review data including photos |

### When to use

- **Track competitor prices** on TikTok Shop products you care about (run on a schedule, diff datasets).
- **Pull review intelligence** for sentiment analysis or AI summaries.
- **Catalog a known list of products** for inventory monitoring or affiliate verification.
- **AI-agent shopping research** — call from Claude / ChatGPT via MCP.

### When NOT to use

- For TikTok user profiles, videos, comments, hashtags — use [tiktok-profile-scraper](https://apify.com/khadinakbar/tiktok-profile-scraper), [tiktok-video-comments-scraper](https://apify.com/khadinakbar/tiktok-video-comments-scraper), [tiktok-trending-hashtags-scraper](https://apify.com/khadinakbar/tiktok-trending-hashtags-scraper), or [tiktok-ads-scraper](https://apify.com/khadinakbar/tiktok-ads-scraper).
- For TikTok Shop **search by keyword** or **browsing a seller's full catalog** — coming in v0.2. For now you must supply specific product URLs.
- For Amazon, Etsy, Shopify, eBay — see the matching all-in-one scrapers in the same store.
- This release supports **US only**. Multi-region (UK, MY, ID, VN, TH, SG, PH) is on the v0.2 roadmap.

### Pricing

Pay-per-event + Pay-per-usage (both enabled — pick whichever fits your job).

| Event | Price |
|---|---|
| `apify-actor-start` | $0.00005 |
| `product-found` | **$0.005 per product** |
| `review-extracted` | **$0.001 per review** (only when `includeReviews: true`) |

**Typical cost:**
- 10 product URLs (no reviews): **~$0.05**
- 10 product URLs + 30 reviews each: **~$0.35**
- 100 product URLs + 30 reviews each: **~$3.50**

Compare to single-purpose competitors at **$0.025/product** for the same data — we deliver the same scope at **80% lower cost**.

### Inputs

```jsonc
{
  "productUrls": [
    "https://shop.tiktok.com/view/product/1731936406579351560",
    "https://shop.tiktok.com/view/product/1729123456789012345"
  ],
  "includeReviews": false,
  "maxReviewsPerProduct": 30
}
````

### Output

Mixed dataset with a `_type` discriminator (`product`, `review`, `_summary`). Use the **Products** view in the Output tab for the standard product table, or **Reviews** for review records.

### MCP / AI agent usage

The actor is MCP-ready. Tool name: `apify--tiktok-shop-scraper`. Drop it in any Claude / ChatGPT / Cursor MCP client via [mcp.apify.com](https://mcp.apify.com).

```jsonc
{
  "productUrls": ["https://shop.tiktok.com/view/product/1731936406579351560"],
  "includeReviews": true,
  "maxReviewsPerProduct": 10
}
```

Output is flat-keyed and capped to ~500 tokens per item so the agent has room to reason over many products.

### Code samples

**Node.js (Apify SDK):**

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('khadinakbar/tiktok-shop-scraper').call({
  productUrls: ['https://shop.tiktok.com/view/product/1731936406579351560'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.filter((i) => i._type === 'product'));
```

**Python:**

```python
from apify_client import ApifyClient

client = ApifyClient(token=os.environ['APIFY_TOKEN'])
run = client.actor('khadinakbar/tiktok-shop-scraper').call(run_input={
    'productUrls': ['https://shop.tiktok.com/view/product/1731936406579351560'],
    'includeReviews': True,
    'maxReviewsPerProduct': 30,
})
for item in client.dataset(run['defaultDatasetId']).iterate_items():
    print(item)
```

**curl (REST API):**

```bash
curl -X POST "https://api.apify.com/v2/acts/khadinakbar~tiktok-shop-scraper/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "productUrls": ["https://shop.tiktok.com/view/product/1731936406579351560"] }'
```

### Reliability

- **Apify Residential proxy (US)** required — TikTok Shop blocks datacenter IPs.
- **Playwright + fingerprint masking** — needed because TikTok masks prices in static HTML (`$5*` placeholders) until the JS renders.
- **Session pool with persistent cookies** — same identity across requests.
- **Auto-retire on 403/429 + anti-bot challenge detection** — failed sessions are dropped and rotated.
- Up to **4 retries with exponential backoff** per request.
- Graceful degradation: missing fields return `null` with a `_warnings` entry; the run continues.

### How prices are extracted

TikTok Shop hides real prices in the server-rendered HTML — they show as masked placeholders like `$5*` until JavaScript fetches and merges live pricing. This actor:

1. Lets the page fully render via Playwright (waits for hydration + network idle).
2. Sniffs XHR responses for unmasked price JSON.
3. Falls back to a DOM scan that ignores any element containing `*` (TikTok's mask character) plus shipping / coupon / cashback labels.
4. Picks the largest, most prominent price element on the page as the canonical product price.

This is the same approach the top-rated competitor uses, which is why their actor charges $0.025 per product. Ours costs $0.005.

### Roadmap

- **v0.2 — Search + shop catalog** (Camoufox stealth bypass for `www.tiktok.com/shop/s/` and `/shop/store/` paths)
- **v0.2 — Category browsing**
- **v0.3 — UK + Southeast Asia regions** (MY, ID, VN, TH, SG, PH)
- **v0.4 — Affiliate creator data** (`creators[]` per product)
- **v0.5 — Standby MCP variant** for sub-second tool calls

### FAQ

**Does this require a TikTok login?** No. Public TikTok Shop product pages only.

**Why doesn't search work in v0.1?** TikTok protects `www.tiktok.com/shop/s/...` (search), `/shop/store/...` (shop), and `/shop/c/...` (category) paths with aggressive anti-bot challenges. Bypassing them reliably needs Camoufox stealth mode, planned for v0.2. Product detail pages on `shop.tiktok.com/view/product/...` work cleanly today.

**Can I scrape variants and stock?** Yes — `variants[]` per product includes `skuId`, `label` (e.g., `"Red / XL"`), and `stock` (real-time available quantity from `sku_quantity`).

**Can I get historical data?** No — this scrapes the live state of the page. For change detection, run the actor on a schedule and diff datasets.

**Some fields are null. Why?** TikTok renders different fields for different products (e.g., not all products have shopRating exposed publicly). Missing fields surface in the `_warnings` array. Critical fields (title, price) are always required to drop a row.

### Legal

This actor scrapes **publicly available** product information from TikTok Shop. It does not bypass authentication, scrape private data, or collect personal contact info beyond publicly displayed seller / reviewer names. You are responsible for compliance with TikTok's Terms of Service and applicable data-protection laws (GDPR, CCPA) in your jurisdiction.

# Actor input Schema

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

Direct TikTok Shop product page URLs to scrape, one per line. Accepts shop.tiktok.com/view/product/<id> and shop.tiktok.com/<region>/pdp/<slug>/<id>. Returns full product details + variants + seller. Multiple URLs run in parallel.

## `includeReviews` (type: `boolean`):

When true, scrapes reviews for each product (capped by maxReviewsPerProduct). Adds $0.001 per review to the cost. Defaults to false. Set to true only when review text/ratings are needed downstream.

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

Cap on reviews extracted per product when includeReviews=true (1-1000). Reviews are returned newest-first. Defaults to 30. Ignored when includeReviews=false.

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

Apify proxy. Defaults to Residential US — required for reliable TikTok Shop scraping. Override only if you know your proxy passes TikTok's anti-bot.

## Actor input object example

```json
{
  "productUrls": [
    "https://shop.tiktok.com/view/product/1731936406579351560"
  ],
  "includeReviews": false,
  "maxReviewsPerProduct": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `dataset` (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 = {
    "productUrls": [
        "https://shop.tiktok.com/view/product/1731936406579351560"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("khadinakbar/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://shop.tiktok.com/view/product/1731936406579351560"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("khadinakbar/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://shop.tiktok.com/view/product/1731936406579351560"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call khadinakbar/tiktok-shop-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "TikTok Shop Product Scraper",
        "description": "All-in-one TikTok Shop scraper. Auto-detects search keyword, product URL, shop URL, or category slug. Returns price, variants, seller, sold count, ratings, reviews. MCP-ready. $0.005/product, $0.001/review.",
        "version": "0.1",
        "x-build-id": "xrGpoRXFQIOSITg0y"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/khadinakbar~tiktok-shop-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-khadinakbar-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/khadinakbar~tiktok-shop-scraper/runs": {
            "post": {
                "operationId": "runs-sync-khadinakbar-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/khadinakbar~tiktok-shop-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-khadinakbar-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": "Direct TikTok Shop product page URLs to scrape, one per line. Accepts shop.tiktok.com/view/product/<id> and shop.tiktok.com/<region>/pdp/<slug>/<id>. Returns full product details + variants + seller. Multiple URLs run in parallel.",
                        "items": {
                            "type": "string",
                            "pattern": "^https?://(www\\.|shop\\.)?tiktok\\.com/.*\\d{15,20}.*$"
                        },
                        "default": []
                    },
                    "includeReviews": {
                        "title": "Include reviews",
                        "type": "boolean",
                        "description": "When true, scrapes reviews for each product (capped by maxReviewsPerProduct). Adds $0.001 per review to the cost. Defaults to false. Set to true only when review text/ratings are needed downstream.",
                        "default": false
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max reviews per product",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Cap on reviews extracted per product when includeReviews=true (1-1000). Reviews are returned newest-first. Defaults to 30. Ignored when includeReviews=false.",
                        "default": 30
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy. Defaults to Residential US — required for reliable TikTok Shop scraping. Override only if you know your proxy passes TikTok's anti-bot.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
