# Threadsスクレイパー — 投稿・プロフィール・ハッシュタグ・キーワード検索 (`claude_code_reviewer/threads-scraper-ja`) Actor

Meta Threads向けのオールインワン・スクレイパー。**ユーザープロフィール、ハッシュタグ、キーワード検索、単一投稿と返信、カスタムフィード**の5つのモードを1つのアクターに集約。

- **URL**: https://apify.com/claude\_code\_reviewer/threads-scraper-ja.md
- **Developed by:** [Reggie](https://apify.com/claude_code_reviewer) (community)
- **Categories:** SEO tools, Social media, AI
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## Threadsスクレイパー — 投稿・プロフィール・ハッシュタグ・キーワード検索

Meta Threads向けのオールインワン・スクレイパー。**ユーザープロフィール、ハッシュタグ、キーワード検索、単一投稿と返信、カスタムフィード**の5つのモードを1つのアクターに集約。

ログインやAPIトークンは不要。最大100件のユーザー名やキーワードの一括入力に対応しており、初期費用なしの**1件$0.005**というシンプルな従量課金制です。Metaの公式APIを構築する手間を省き、迅速にデータを取得したいマーケター、リサーチャー、SaaS開発者、ソーシャルリスニングチームに最適なツールです。

---

### 取得可能なデータ

#### 各投稿データ:
- `postId`、`postUrl`、`content`、`publishedAt`、`publishedAtISO`
- メディア情報: `mediaType`（text / photo / video / carousel）、`mediaUrls[]`
- エンゲージメント: `likeCount`、`replyCount`、`repostCount`、`shareCount`、`viewCount`、`quoteCount`
- ソース情報: `sourceType`（取得モード）、`sourceQuery`（対象ユーザー名 / キーワード / URL）
- `scrapedAt`（取得時のタイムスタンプ）
- `threadParts[]` — 複数セグメントにわたるスレッド投稿を自動的にマージして保持。

#### 投稿者情報:
- `author` ハンドル（ユーザー名）

#### 返信データ（`post`モードのみ）:
- `replies[]` — 主要な返信を最大20件（`author`、`content`、`publishedAt`、`likeCount`を含む）

> **注意:** データセットのフィールドキーは英語で統一されているため、後続の解析ツールやワークフローとの高い互換性を保ちます。

---

### 5つのモードを1つのアクターで実現

| モード | 機能 | 入力フィールド |
|--------|------|----------------|
| 👤 **User** | 特定プロフィールの全投稿を取得 | `usernames[]` |
| 🏷️ **Hashtag** | ハッシュタグやトピックページを取得 | `keywords[]` |
| 🔎 **Search** | キーワード検索（人気順 / 最新順） | `keywords[]` + `searchSort` |
| 💬 **Post** | 特定の投稿と最大20件の主要な返信 | `postUrls[]` |
| 📰 **Feed** | 任意のThreadsカスタムフィードURL | `feedUrls[]` |

実行ごとに **Mode** ドロップダウンから1つを選択します。競合ツールでは4〜5個のアクターに分かれている機能を1つのコードベースに統合しているため、インテグレーションが非常にシンプルです。

---

### 入力パラメータ

| フィールド | 型 | 必須 | デフォルト | 説明 |
|-----------|----|:----:|:---------:|------|
| `mode` | enum | 推奨 | `user` | `user`、`hashtag`、`search`、`post`、`feed`から選択。未入力時は自動判定。 |
| `usernames` | string[] | `user`時 | — | ユーザー名のみ。`@`やURLは不要。最大100件。 |
| `bulkUsernames` | string | 任意 | — | 複数ユーザー名の一括貼り付け用（スプレッドシートの列をそのままコピー可能）。 |
| `keywords` | string[] | `hashtag/search`時 | — | キーワードまたはハッシュタグ（`#`は省略可）。最大100件。 |
| `bulkKeywords` | string | 任意 | — | キーワードの一括貼り付け用。 |
| `postUrls` | string[] | `post`時 | — | 投稿の完全なURL。返信も自動取得します。 |
| `feedUrls` | string[] | `feed`時 | — | ThreadsカスタムフィードのURL。 |
| `searchSort` | enum | 任意 | `top` | `top`（人気）または`recent`（最新）。`search`モードで適用。 |
| `dateFrom` | string | 任意 | — | `YYYY-MM-DD` または相対指定（例: `7 days`、`1 month`）。 |
| `dateTo` | string | 任意 | — | `dateFrom`と同じ形式。 |
| `maxPosts` | integer | 任意 | `50` | 1ソースあたりの最大取得件数（1〜500）。自動スクロール対応。 |

---

### 注意事項と制約

- **`maxPosts` は上限値です:** 非アクティブなアカウントやニッチなタグでは、指定数より少なくなる場合があります。5回連続で新しい投稿が検出されない場合は早期終了します。
- **相対日付の評価:** `"7 days"` などの指定は実行時の日付に基づきます。定期的なスケジュール実行に便利です。
- **エンゲージメント数値は概算です:** Threads側で「12.5K」のように省略表記される場合、ツール側で「12500」に正規化するため、正確な1の位までの数値ではない可能性があります。
- **公開データのみに対応:** ログイン不要で動作するため、非公開アカウントやフォロワー限定コンテンツは取得できません。
- **スレッドの自動結合:** 複数に分かれた投稿（1/3、2/3...）は `threadParts[]` を通じて1つのレコードとしてマージされます。

---

### FAQ

**Q: ユーザー名の指定形式は？**
`zuck` のような純粋なユーザー名を入力してください。`@zuck` や URL 形式でも自動的にクレンジングされます。

**Q: `maxPosts` より取得件数が少ないのはなぜ？**
投稿自体が少ないか、Threadsの仕様でそれ以上のスクロールが制限された可能性があります。詳細はログの `totalItems` を確認してください。

**Q: 一部のデータが `null` や `0` になっています。**
Threads側でデータが生成されていない（例：閲覧数がまだカウントされていない）場合に発生します。これはツールの不具合ではなく、ソース側のデータ欠損です。

**Q: 対応している出力形式は？**
JSON、CSV、Excel、XML、HTMLに対応。Apifyの標準機能により、Zapier、Make、n8n、Googleスプレッドシート等との連携も容易です。

---

### 公式APIとの違い

Metaの[公式API](https://developers.facebook.com/docs/threads)には、公開データの収集において以下の制約があります。

- **自アカウント限定:** 自分が管理するアカウントのデータしか取得できず、競合調査やトレンド分析には向きません。
- **審査の壁:** アプリレビューやOAuthの設定など、導入までのハードルが高いです。

**本ツールは、市場調査、ソーシャルリスニング、競合分析など、ログインなしで閲覧可能な公開データを効率的に収集することに特化した、より手軽な選択肢です。**

---

### 免責事項

本スクレイパーは公開されているThreadsデータのみを収集します。非公開データへのアクセスや認証の回避は行いません。利用者は、本ツールの使用が各地域の法律（GDPR、個人情報保護法等）およびMetaの利用規約に準拠していることを自ら確認する責任を負います。スパムや嫌がらせ目的での使用は禁止されています。

# Actor input Schema

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

何を取得しますか?モードを選んで、下の該当セクションを入力してください。
## `usernames` (type: `array`):

Threadsのユーザー名(@やURL不要)。例:zuck、mosseri。モード=Userの時に使用します。
## `bulkUsernames` (type: `string`):

**1行に1つのユーザー名**、改行で区切ります。**引用符やカンマは不要です。** 例:

````

zuck
mosseri
finkd

```

GoogleスプレッドシートやExcelの列を直接コピーして貼り付けられます。実行時に上のユーザー名リストと統合されます。
## `keywords` (type: `array`):

検索モードのキーワード、またはハッシュタグモードのタグ(#は省略可)。例:AIニュース、#テック。
## `bulkKeywords` (type: `string`):

**1行に1つのキーワードまたはハッシュタグ**、改行で区切ります。**引用符やカンマは不要です。** 例:

```

LLMエージェント
バイブコーディング
\#AI

````

実行時に上のキーワードリストと統合されます。
## `searchSort` (type: `string`):

キーワード検索結果のソート順。検索モードのみに適用されます。
## `dateFrom` (type: `string`):

投稿の最も古い日付。YYYY-MM-DD、または"7 days"、"1 month"のような相対表記が使えます。
## `dateTo` (type: `string`):

投稿の最も新しい日付。開始日と同じ形式。
## `postUrls` (type: `array`):

Threadsの投稿の完全なURL。モード=Postの時に使用します。例:https://www.threads.com/@user/post/ABC123。
## `feedUrls` (type: `array`):

Threadsのカスタムフィードのurl。モード=Feedの時に使用します。例:https://www.threads.com/custom_feed/18113589370710265。
## `maxPosts` (type: `integer`):

1ソースあたりの最大取得件数。多いほど課金対象の結果が増えます(1件$0.005)。スクロールは自動管理されます。

## Actor input object example

```json
{
  "mode": "user",
  "usernames": [
    "zuck"
  ],
  "searchSort": "top",
  "maxPosts": 50
}
````

# 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 = {
    "mode": "user",
    "usernames": [
        "zuck"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("claude_code_reviewer/threads-scraper-ja").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 = {
    "mode": "user",
    "usernames": ["zuck"],
}

# Run the Actor and wait for it to finish
run = client.actor("claude_code_reviewer/threads-scraper-ja").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 '{
  "mode": "user",
  "usernames": [
    "zuck"
  ]
}' |
apify call claude_code_reviewer/threads-scraper-ja --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

````json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Threadsスクレイパー — 投稿・プロフィール・ハッシュタグ・キーワード検索",
        "description": "Meta Threads向けのオールインワン・スクレイパー。**ユーザープロフィール、ハッシュタグ、キーワード検索、単一投稿と返信、カスタムフィード**の5つのモードを1つのアクターに集約。",
        "version": "1.0",
        "x-build-id": "dGV0q1dV3w5R2yQpJ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/claude_code_reviewer~threads-scraper-ja/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-claude_code_reviewer-threads-scraper-ja",
                "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/claude_code_reviewer~threads-scraper-ja/runs": {
            "post": {
                "operationId": "runs-sync-claude_code_reviewer-threads-scraper-ja",
                "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/claude_code_reviewer~threads-scraper-ja/run-sync": {
            "post": {
                "operationId": "run-sync-claude_code_reviewer-threads-scraper-ja",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mode": {
                        "title": "🎯 モード",
                        "enum": [
                            "user",
                            "hashtag",
                            "search",
                            "post",
                            "feed"
                        ],
                        "type": "string",
                        "description": "何を取得しますか?モードを選んで、下の該当セクションを入力してください。",
                        "default": "user"
                    },
                    "usernames": {
                        "title": "👤 ユーザー名",
                        "maxItems": 100,
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Threadsのユーザー名(@やURL不要)。例:zuck、mosseri。モード=Userの時に使用します。",
                        "items": {
                            "type": "string"
                        }
                    },
                    "bulkUsernames": {
                        "title": "📋 ユーザー名を一括貼り付け",
                        "type": "string",
                        "description": "**1行に1つのユーザー名**、改行で区切ります。**引用符やカンマは不要です。** 例:\n\n```\nzuck\nmosseri\nfinkd\n```\n\nGoogleスプレッドシートやExcelの列を直接コピーして貼り付けられます。実行時に上のユーザー名リストと統合されます。"
                    },
                    "keywords": {
                        "title": "🏷️ キーワード / タグ",
                        "maxItems": 100,
                        "uniqueItems": true,
                        "type": "array",
                        "description": "検索モードのキーワード、またはハッシュタグモードのタグ(#は省略可)。例:AIニュース、#テック。",
                        "items": {
                            "type": "string"
                        }
                    },
                    "bulkKeywords": {
                        "title": "📋 キーワードを一括貼り付け",
                        "type": "string",
                        "description": "**1行に1つのキーワードまたはハッシュタグ**、改行で区切ります。**引用符やカンマは不要です。** 例:\n\n```\nLLMエージェント\nバイブコーディング\n#AI\n```\n\n実行時に上のキーワードリストと統合されます。"
                    },
                    "searchSort": {
                        "title": "🔀 検索ソート",
                        "enum": [
                            "top",
                            "recent"
                        ],
                        "type": "string",
                        "description": "キーワード検索結果のソート順。検索モードのみに適用されます。",
                        "default": "top"
                    },
                    "dateFrom": {
                        "title": "📅 開始日",
                        "type": "string",
                        "description": "投稿の最も古い日付。YYYY-MM-DD、または\"7 days\"、\"1 month\"のような相対表記が使えます。"
                    },
                    "dateTo": {
                        "title": "📅 終了日",
                        "type": "string",
                        "description": "投稿の最も新しい日付。開始日と同じ形式。"
                    },
                    "postUrls": {
                        "title": "💬 投稿URL",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Threadsの投稿の完全なURL。モード=Postの時に使用します。例:https://www.threads.com/@user/post/ABC123。",
                        "items": {
                            "type": "string"
                        }
                    },
                    "feedUrls": {
                        "title": "📰 フィードURL",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Threadsのカスタムフィードのurl。モード=Feedの時に使用します。例:https://www.threads.com/custom_feed/18113589370710265。",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPosts": {
                        "title": "📊 最大投稿数",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "1ソースあたりの最大取得件数。多いほど課金対象の結果が増えます(1件$0.005)。スクロールは自動管理されます。",
                        "default": 50
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
````
