# Linktree Advanced Lead Scraper (Category & Subcategory) (`ahmed_jasarevic/linktree-advanced-lead-scraper`) Actor

Advanced Linktree scraper that extracts profiles from category and subcategory directories, collects emails, social links, bio data, and profile metadata. Supports pagination, proxy rotation, and large-scale lead extraction from Linktree discovery pages.

- **URL**: https://apify.com/ahmed\_jasarevic/linktree-advanced-lead-scraper.md
- **Developed by:** [Ahmed Jasarevic](https://apify.com/ahmed_jasarevic) (community)
- **Categories:** Lead generation, Social media, E-commerce
- **Stats:** 6 total users, 5 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $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

## 🌿 Linktree & Bio Lead Discovery Scraper (Categories & Subcategories)

**Discover and extract large-scale leads from Linktree, Beacons and other link-in-bio directories using categories and subcategories.**

This tool is designed for **bulk lead discovery**, allowing you to start from curated categories or subcategories and automatically expand them into a structured list of real profiles containing emails, social links, and business information.

👉 For direct profile extraction (single Linktree URL), use this companion Actor:
[https://apify.com/ahmed_jasarevic/linktree-beacons-bio-email-scraper-extract-leads](https://apify.com/ahmed_jasarevic/linktree-beacons-bio-email-scraper-extract-leads)

---

### 🚀 What this tool does

Instead of manually searching for creators or businesses one by one, this Actor lets you:

* 📂 Explore entire categories of link-in-bio profiles
* 🔎 Expand subcategories into full profile lists
* 📈 Automatically collect hundreds of profiles per category
* 🧠 Discover hidden creators, brands, and businesses at scale

It acts as a **discovery engine for link-in-bio ecosystems**.

---

### 🎯 Input options

You can control the scraping flow using:

#### 📂 Categories

Scrape full top-level groups of profiles (e.g. “attractions”, “fashion”, “fitness”).

#### 📁 Subcategories

Target more specific segments inside categories for refined lead discovery.

#### 🔄 Pagination control

Define how deep the scraper should go per category.

---

### 📊 What you get

Each discovered profile is expanded into structured lead data:

* Username
* Profile URL
* Email addresses (if publicly available)
* Social media links (Instagram, TikTok, YouTube, X, etc.)
* External and affiliate links
* Bio / description
* Verification status
* Scraped timestamp

---

### 💡 Use cases

* 🌐 Building large influencer databases
* 📣 Marketing outreach campaigns
* 🧲 Lead generation for agencies and freelancers
* 📊 Market research on creator niches
* 💼 Finding business contacts from public profiles
* 🚀 Scaling discovery of monetized online profiles

---

### ⚡ Key advantages

* Built for **bulk discovery at scale**
* Expands categories into full lead datasets automatically
* Works across multiple link-in-bio ecosystems
* Produces clean, structured, export-ready data
* Ideal for growth, sales, and outreach workflows

---

### 🔗 Recommended workflow

1. Use this Actor to **discover profiles via categories/subcategories**
2. Then pass individual profile URLs into the companion Actor for deeper extraction:
   [https://apify.com/ahmed_jasarevic/linktree-beacons-bio-email-scraper-extract-leads](https://apify.com/ahmed_jasarevic/linktree-beacons-bio-email-scraper-extract-leads)

This gives you a **two-step lead system: discovery → enrichment**

---

### 🧠 Output example

```json
{
  "username": "exampleuser",
  "sourceUrl": "https://linktr.ee/exampleuser",
  "emails": ["contact@example.com"],
  "socialLinks": [
    {
      "type": "INSTAGRAM",
      "url": "https://instagram.com/exampleuser"
    }
  ],
  "regularLinks": [
    {
      "title": "My Website",
      "url": "https://example.com"
    }
  ],
  "bio": "Creator sharing lifestyle content and business links.",
  "isVerified": true,
  "scrapedAt": "2026-05-20T12:00:00Z"
}
````

***

### 🔥 Perfect for

- Agencies building large lead databases
- Growth marketers scaling outreach lists
- Affiliate marketers discovering monetized profiles
- Researchers analyzing creator ecosystems
- Sales teams finding public contact points

# Actor input Schema

## `categories` (type: `array`):

Select one or more main categories.

## `subCategories` (type: `array`):

Select specific sub-categories.

## `maxPagesPerCategory` (type: `integer`):

How deep the scraper will go inside each category/sub-category (1 page ~ 24 profiles).

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

Maximum number of pages processed simultaneously.

## `debugLog` (type: `boolean`):

Turn on to see detailed logs and raw network payloads in the console.

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

It is highly recommended to use Apify Proxy to avoid getting rate-limited by Linktree.

## Actor input object example

```json
{
  "categories": [
    "business"
  ],
  "subCategories": [],
  "maxPagesPerCategory": 5,
  "maxConcurrency": 10,
  "debugLog": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `dataset` (type: `string`):

Link to the default dataset containing the scraped Linktree and Bio leads.

# 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 = {
    "categories": [
        "business"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ahmed_jasarevic/linktree-advanced-lead-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 = { "categories": ["business"] }

# Run the Actor and wait for it to finish
run = client.actor("ahmed_jasarevic/linktree-advanced-lead-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 '{
  "categories": [
    "business"
  ]
}' |
apify call ahmed_jasarevic/linktree-advanced-lead-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Linktree Advanced Lead Scraper (Category & Subcategory)",
        "description": "Advanced Linktree scraper that extracts profiles from category and subcategory directories, collects emails, social links, bio data, and profile metadata. Supports pagination, proxy rotation, and large-scale lead extraction from Linktree discovery pages.",
        "version": "1.0",
        "x-build-id": "Dc64BS5zSbHYs9Qph"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/ahmed_jasarevic~linktree-advanced-lead-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-ahmed_jasarevic-linktree-advanced-lead-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/ahmed_jasarevic~linktree-advanced-lead-scraper/runs": {
            "post": {
                "operationId": "runs-sync-ahmed_jasarevic-linktree-advanced-lead-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/ahmed_jasarevic~linktree-advanced-lead-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-ahmed_jasarevic-linktree-advanced-lead-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "categories": {
                        "title": "🏢 Main Categories (Linktree)",
                        "type": "array",
                        "description": "Select one or more main categories.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "business",
                                "creative",
                                "education",
                                "entertainment",
                                "fashion-beauty",
                                "food-beverage",
                                "government-politics",
                                "health-wellness",
                                "non-profit",
                                "other",
                                "tech",
                                "travel-tourism"
                            ],
                            "enumTitles": [
                                "🏢 Business",
                                "🎨 Creative",
                                "📚 Education",
                                "🤩 Entertainment",
                                "👗 Fashion & Beauty",
                                "🍕 Food & Beverage",
                                "⚖️ Government & Politics",
                                "🍎 Health & Wellness",
                                "💗 Non-Profit",
                                "😎 Other",
                                "🖥 Tech",
                                "✈️ Travel & Tourism"
                            ]
                        },
                        "default": [
                            "business"
                        ]
                    },
                    "subCategories": {
                        "title": "🔍 Sub-categories",
                        "type": "array",
                        "description": "Select specific sub-categories.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "automobiles",
                                "startup",
                                "venture-capital",
                                "real-estate",
                                "public-relations",
                                "weddings",
                                "shopping-retail",
                                "home-improvement-maintenance",
                                "hr-recruiting",
                                "marketing-advertising",
                                "legal-services",
                                "agency-consulting",
                                "recreation",
                                "financial-services",
                                "digital-creator",
                                "designer",
                                "cosplay",
                                "model",
                                "visual-arts",
                                "writer",
                                "crafts",
                                "influencer",
                                "campus-organizations",
                                "teacher",
                                "schools-universities",
                                "e-learning",
                                "radio-podcasts",
                                "actor",
                                "dance-theatre",
                                "sports",
                                "music",
                                "talent-management",
                                "performance-art",
                                "talent-agency",
                                "comedy",
                                "live-events",
                                "gaming-esports",
                                "film-tv",
                                "tattoos-piercings",
                                "nail-care",
                                "jewelry",
                                "shoes",
                                "hair-care",
                                "makeup-skincare",
                                "clothing-accessories",
                                "fragrances",
                                "desserts",
                                "bars-restaurants",
                                "coffee-tea",
                                "chef",
                                "alcohol",
                                "home-cooking",
                                "groceries",
                                "policy",
                                "activism",
                                "library",
                                "countries-municipalities",
                                "judiciary",
                                "public-services",
                                "emergency-services",
                                "politicians-campaigns",
                                "military-veterans",
                                "law-enforcement",
                                "spirituality",
                                "nutrition",
                                "cannabis",
                                "healthcare",
                                "life-coaching",
                                "disaster-relief",
                                "community-organization",
                                "museums",
                                "wildlife",
                                "diversity-inclusion",
                                "climate",
                                "public-figure",
                                "crowdfunding",
                                "not-listed",
                                "affiliate-marketing",
                                "fan-club",
                                "electronic-press-kit",
                                "memes",
                                "contests-giveaways",
                                "portfolio",
                                "religion",
                                "pets",
                                "personal",
                                "edutech",
                                "social-media",
                                "hardware",
                                "fintech",
                                "saas",
                                "mobile-app",
                                "transportation",
                                "attractions",
                                "hotels-lodging"
                            ],
                            "enumTitles": [
                                "🚗 Automobiles",
                                "🚀 Startup",
                                "💰 Venture Capital",
                                "🏠 Real Estate",
                                "📢 Public Relations",
                                "💍 Weddings",
                                "🛍️ Shopping & Retail",
                                "🛠️ Home Improvement & Maintenance",
                                "👥 HR & Recruiting",
                                "📈 Marketing & Advertising",
                                "⚖️ Legal Services",
                                "🏢 Agency & Consulting",
                                "🎮 Recreation",
                                "💳 Financial Services",
                                "🎥 Digital Creator",
                                "🎨 Designer",
                                "🎭 Cosplay",
                                "📸 Model",
                                "🖼 Visual Arts",
                                "✍️ Writer",
                                "🧵 Crafts",
                                "📣 Influencer",
                                "🎓 Campus Organizations",
                                "👩‍🏫 Teacher",
                                "🏫 Schools & Universities",
                                "💻 E-learning",
                                "📻 Radio & Podcasts",
                                "🎬 Actor",
                                "💃 Dance & Theatre",
                                "🏆 Sports",
                                "🎵 Music",
                                "🎯 Talent Management",
                                "🎭 Performance Art",
                                "🏢 Talent Agency",
                                "😂 Comedy",
                                "🎤 Live Events",
                                "🎮 Gaming & Esports",
                                "🎬 Film & TV",
                                "💉 Tattoos & Piercings",
                                "💅 Nail Care",
                                "💍 Jewelry",
                                "👟 Shoes",
                                "💇 Hair Care",
                                "💄 Makeup & Skincare",
                                "👗 Clothing & Accessories",
                                "🌸 Fragrances",
                                "🍰 Desserts",
                                "🍽 Bars & Restaurants",
                                "☕ Coffee & Tea",
                                "👨‍🍳 Chef",
                                "🍺 Alcohol",
                                "🍳 Home Cooking",
                                "🛒 Groceries",
                                "📜 Policy",
                                "✊ Activism",
                                "📚 Library",
                                "🌍 Countries & Municipalities",
                                "⚖️ Judiciary",
                                "🏛 Public Services",
                                "🚨 Emergency Services",
                                "🗳 Politicians & Campaigns",
                                "🪖 Military & Veterans",
                                "🚓 Law Enforcement",
                                "🧘 Spirituality",
                                "🥗 Nutrition",
                                "🌿 Cannabis",
                                "🏥 Healthcare",
                                "🧠 Life Coaching",
                                "🚑 Disaster Relief",
                                "🤝 Community Organization",
                                "🏛 Museums",
                                "🐾 Wildlife",
                                "🌈 Diversity & Inclusion",
                                "🌍 Climate",
                                "👤 Public Figure",
                                "💸 Crowdfunding",
                                "📦 Not Listed",
                                "🤝 Affiliate Marketing",
                                "🎉 Fan Club",
                                "📰 Electronic Press Kit",
                                "😂 Memes",
                                "🎁 Contests & Giveaways",
                                "📁 Portfolio",
                                "🕌 Religion",
                                "🐶 Pets",
                                "🧍 Personal",
                                "🧠 Edutech",
                                "📱 Social Media",
                                "🖥 Hardware",
                                "🏦 Fintech",
                                "☁️ SaaS",
                                "📲 Mobile App",
                                "🚕 Transportation",
                                "🎡 Attractions",
                                "🏨 Hotels & Lodging"
                            ]
                        },
                        "default": []
                    },
                    "maxPagesPerCategory": {
                        "title": "📄 Max pages per category",
                        "minimum": 1,
                        "type": "integer",
                        "description": "How deep the scraper will go inside each category/sub-category (1 page ~ 24 profiles).",
                        "default": 5
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "type": "integer",
                        "description": "Maximum number of pages processed simultaneously.",
                        "default": 10
                    },
                    "debugLog": {
                        "title": "🐞 Enable Debug Logs",
                        "type": "boolean",
                        "description": "Turn on to see detailed logs and raw network payloads in the console.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "It is highly recommended to use Apify Proxy to avoid getting rate-limited by Linktree.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
