# Clutch B2B Leads Scraper (`cerridwen/clutch-co-scraper`) Actor

Extract B2B company data, verified reviews, and leads from Clutch.co. Fast and reliable proxy-free bypass logic. Scrape domains, minimum project sizes, hourly rates, employee counts, and contact links perfectly formatted for your sales pipelines and competitive analysis.

- **URL**: https://apify.com/cerridwen/clutch-co-scraper.md
- **Developed by:** [Cerridwen](https://apify.com/cerridwen) (community)
- **Categories:** Lead generation, Automation, Integrations
- **Stats:** 21 total users, 4 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

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

## Clutch.co Company Scraper

Scrape company data from Clutch.co — names, ratings, pricing, location, phone, website URLs. Perfect for B2B lead generation and competitor analysis.

**Unique features no other Clutch scraper offers:**
- **Lead Scoring** — Every company gets a 0-100 lead score based on rating, reviews, contact info, and verification status
- **Category Summary** — Automatic market analysis: avg rating, top locations, top services, employee distribution
- **Competitor Comparison** — Compare 2-5 companies side-by-side with service overlap and rating analysis
- **Review Insights** — Top mentions and strength highlights extracted from reviews
- **Keyword Search** — Search Clutch.co by keyword instead of browsing categories

### What data can you extract?

#### From listing pages (fast, no profile visit needed)

| Field             | Example                                                 |
| ----------------- | ------------------------------------------------------- |
| Company Name      | "Acme IT Solutions"                                     |
| Clutch ID         | "1234567"                                               |
| Clutch Rating     | 4.9                                                     |
| Review Count      | 26                                                      |
| Min. Project Size | "$1,000+"                                               |
| Hourly Rate       | "$150 - $199 / hr"                                      |
| Employee Count    | "50-249"                                                |
| Location          | "San Francisco, CA"                                     |
| Phone Number      | "(555) 123-4567"                                        |
| Website URL       | "https://example-company.com"                           |
| Services          | ["50% IT Managed Services", "30% Cybersecurity", ...]   |
| Tagline           | Company summary text                                    |
| **Lead Score**    | 73 (0-100)                                              |

#### From profile pages (enable scrapeDetails)

| Field               | Example                                                  |
| ------------------- | -------------------------------------------------------- |
| Full Description    | Detailed company bio                                     |
| Verified Status     | "Verified" / "Gold Verified" / "Premier Verified"       |
| Founded Year        | "2003"                                                   |
| Social Media        | LinkedIn, Facebook, Twitter, Instagram, YouTube URLs     |
| Multiple Locations  | HQ + branch offices with address, phone, employee count  |
| Business Verification | Entity name, status, jurisdiction, formation date, ID  |
| Focus Chart         | Service Lines %, Focus areas %, Industries %, Clients %  |
| Client Reviews      | Rating, quote, feedback, project details, reviewer info  |
| Review Insights     | Top mentions ("Timely (9)", "Communicative (5)", ...)    |

### Use cases

* **B2B Lead Generation** — Build targeted prospect lists filtered by category, location, and budget. Use lead scores to prioritize outreach.
* **Competitor Analysis** — Compare companies side-by-side on rating, pricing, services, and lead score.
* **Market Research** — Get category summaries: avg pricing, rating distribution, top services, geographic concentration.
* **Sales Prospecting** — Get phone numbers, websites, and social media links to reach decision-makers.
* **Vendor Selection** — Use review insights and verification data to evaluate service providers.

### How to use

1. **Set category URLs** — Provide one or more Clutch.co directory page URLs (e.g., `https://clutch.co/web-developers`).
2. **Configure pagination** — Set how many pages to scrape per category. Default is 5 pages.
3. **Enable profile details** — Turn on `scrapeDetails` to get full descriptions, social media, locations, verification, and focus charts.
4. **Enable reviews** — Turn on `scrapeReviews` to extract client reviews with ratings, feedback, and project details.
5. **Use keyword search** — Set `searchQuery` to search Clutch.co by keyword instead of categories.
6. **Compare companies** — Add 2-5 profile URLs to `compareUrls` for side-by-side comparison.
7. **Run and export** — Download results as JSON, CSV, or Excel. Category summary and comparison reports are saved in key-value store.

### Input example

```json
{
    "startUrls": [
        { "url": "https://clutch.co/web-developers" },
        { "url": "https://clutch.co/it-services" }
    ],
    "maxPages": 5,
    "scrapeDetails": true,
    "scrapeReviews": true,
    "enableSummary": true,
    "searchQuery": "",
    "compareUrls": []
}
````

### Output example

```json
{
    "clutchId": "1234567",
    "name": "Acme IT Solutions",
    "profileUrl": "https://clutch.co/profile/example-company",
    "websiteUrl": "https://www.example-company.com/",
    "phone": "(555) 123-4567",
    "rating": 4.9,
    "reviewCount": 26,
    "minProjectSize": "$1,000+",
    "hourlyRate": "$150 - $199 / hr",
    "employees": "50 - 249",
    "location": "San Francisco, CA",
    "services": ["50% IT Managed Services", "30% Cybersecurity"],
    "tagline": "Acme IT Solutions is a managed services provider...",
    "leadScore": 83,
    "description": "Acme IT Solutions is your organization's trusted IT Partner.",
    "isVerified": true,
    "verificationStatus": "Verified",
    "founded": "2003",
    "socialMedia": [
        {"type": "linkedin", "url": "https://www.linkedin.com/company/example-company/"},
        {"type": "facebook", "url": "https://www.facebook.com/examplecompany/"}
    ],
    "locations": [
        {
            "name": "Headquarters",
            "address": "123 Main Street Suite 100 San Francisco, CA 94105",
            "employees": "10 - 15",
            "telephone": "(555) 123-4567"
        }
    ],
    "businessVerification": {
        "entityName": "Acme IT Solutions LLC",
        "entityStatus": "Active",
        "jurisdiction": "Delaware",
        "dateOfFormation": "May 19, 2020"
    },
    "focusChart": {
        "Service Lines": [
            {"name": "IT Managed Services", "percent": 50},
            {"name": "Cybersecurity", "percent": 30}
        ],
        "Focus": [
            {"name": "CMMC Compliance Consulting", "percent": 30},
            {"name": "HIPAA Compliance Consulting", "percent": 30}
        ]
    },
    "reviews": [
        {
            "title": "Managed IT Services for Healthcare Company",
            "rating": 5.0,
            "datePublished": "Jul 17, 2024",
            "quote": "\"We met regularly to address any issues...\"",
            "feedback": "Acme IT Solutions helped the client migrate...",
            "project": {"category": "IT Managed Services"},
            "reviewer": {"title": "Operations Manager, Healthcare Company", "verified": true}
        }
    ],
    "reviewInsights": {
        "topMentions": ["Timely (9)", "Communicative (5)", "Knowledgeable (4)"]
    }
}
```

### Category Summary (saved to key-value store)

After each run, a market analysis report is automatically saved:

```json
{
    "totalCompanies": 91,
    "averageRating": 4.87,
    "medianRating": 4.9,
    "ratingDistribution": {"5.0": 15, "4.5-4.9": 44, "4.0-4.4": 1},
    "topLocations": [{"location": "New York, NY", "count": 4}],
    "topServices": [{"service": "IT Managed Services", "count": 45}],
    "employeeDistribution": [{"range": "50-249", "count": 31}],
    "averageLeadScore": 48.6,
    "topLeads": [{"name": "Example Tech Company", "leadScore": 78}]
}
```

### Supported categories

Any Clutch.co directory page works. Popular categories include:

- `/web-developers` — Web Development Companies
- `/it-services` — IT Services & Support
- `/agencies/digital-marketing` — Digital Marketing Agencies
- `/agencies/seo` — SEO Companies
- `/developers/mobile-application` — Mobile App Developers
- `/agencies/ui-ux-design` — UI/UX Design Agencies
- `/agencies/ppc` — PPC Agencies

You can also use filtered URLs like `/us/web-developers` (US only) or `/web-developers?budget_min=10000`.

### Tips

- Start without `scrapeDetails` to get data faster. Enable it only when you need the full picture.
- Use `scrapeReviews` for vendor evaluation and sentiment analysis.
- Use `compareUrls` to quickly evaluate 2-5 shortlisted vendors.
- The category summary is perfect for market reports and presentations.
- Lead scores help you prioritize which companies to contact first.
- Use Apify proxy for best results (configured by default).
- The scraper handles Cloudflare protection automatically.

# Actor input Schema

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

List of Clutch.co directory/category page URLs to scrape. Example: https://clutch.co/it-services

## `maxPages` (type: `integer`):

Maximum number of listing pages to scrape per category URL. Each page has ~15 companies. Set 0 for unlimited.

## `scrapeDetails` (type: `boolean`):

Visit each company's profile page for extra data: full description, social media links, multiple locations, business verification, focus chart.

## `scrapeReviews` (type: `boolean`):

Extract client reviews from each company's profile page. Includes reviewer info, ratings, project details. Automatically enables profile scraping.

## `searchQuery` (type: `string`):

Search Clutch.co by keyword instead of category URLs. Example: 'react native development'. Leave empty to use category URLs.

## `compareUrls` (type: `array`):

List of 2-5 company profile URLs to compare side-by-side. Outputs a comparison report with ratings, services, and lead scores.

## `enableSummary` (type: `boolean`):

Generate a category summary report after scraping: average rating, top locations, top services, employee distribution, lead score rankings.

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

Proxy settings. Recommended to use Apify proxies for reliable scraping.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://clutch.co/it-services"
    }
  ],
  "maxPages": 5,
  "scrapeDetails": false,
  "scrapeReviews": false,
  "searchQuery": "",
  "compareUrls": [],
  "enableSummary": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

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

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://clutch.co/it-services"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("cerridwen/clutch-co-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 = {
    "startUrls": [{ "url": "https://clutch.co/it-services" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("cerridwen/clutch-co-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 '{
  "startUrls": [
    {
      "url": "https://clutch.co/it-services"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call cerridwen/clutch-co-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Clutch B2B Leads Scraper",
        "description": "Extract B2B company data, verified reviews, and leads from Clutch.co. Fast and reliable proxy-free bypass logic. Scrape domains, minimum project sizes, hourly rates, employee counts, and contact links perfectly formatted for your sales pipelines and competitive analysis.",
        "version": "0.1",
        "x-build-id": "v95i54ElV1vF42iJu"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/cerridwen~clutch-co-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-cerridwen-clutch-co-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/cerridwen~clutch-co-scraper/runs": {
            "post": {
                "operationId": "runs-sync-cerridwen-clutch-co-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/cerridwen~clutch-co-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-cerridwen-clutch-co-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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Category URLs",
                        "type": "array",
                        "description": "List of Clutch.co directory/category page URLs to scrape. Example: https://clutch.co/it-services",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxPages": {
                        "title": "Max Pages Per Category",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum number of listing pages to scrape per category URL. Each page has ~15 companies. Set 0 for unlimited.",
                        "default": 5
                    },
                    "scrapeDetails": {
                        "title": "Scrape Profile Details",
                        "type": "boolean",
                        "description": "Visit each company's profile page for extra data: full description, social media links, multiple locations, business verification, focus chart.",
                        "default": false
                    },
                    "scrapeReviews": {
                        "title": "Scrape Reviews",
                        "type": "boolean",
                        "description": "Extract client reviews from each company's profile page. Includes reviewer info, ratings, project details. Automatically enables profile scraping.",
                        "default": false
                    },
                    "searchQuery": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "Search Clutch.co by keyword instead of category URLs. Example: 'react native development'. Leave empty to use category URLs.",
                        "default": ""
                    },
                    "compareUrls": {
                        "title": "Compare Companies",
                        "type": "array",
                        "description": "List of 2-5 company profile URLs to compare side-by-side. Outputs a comparison report with ratings, services, and lead scores.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "enableSummary": {
                        "title": "Category Summary",
                        "type": "boolean",
                        "description": "Generate a category summary report after scraping: average rating, top locations, top services, employee distribution, lead score rankings.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Recommended to use Apify proxies for reliable scraping."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
