# Clutch.co Scraper - B2B Agency Leads & Data (`logiover/clutch-co-scraper`) Actor

Scrape Clutch.co agencies without login: name, website, rating, pricing & services. Export Clutch agency data to CSV/JSON - an unofficial Clutch API for B2B leads.

- **URL**: https://apify.com/logiover/clutch-co-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** Lead generation, Business, Marketing
- **Stats:** 17 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$1.99 / 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

<div align="center">

## 🏆 Clutch.co Scraper — B2B Agencies & Leads

#### Scrape agencies & service providers from Clutch.co — name, website, rating, reviews, project size, hourly rate, team size, location & services. High-value B2B lead generation.

<br>

![No login](https://img.shields.io/badge/✓_No_login-no_account-2ea44f?style=for-the-badge)
![Cloudflare](https://img.shields.io/badge/🛡️_Cloudflare-bypassed-1f6feb?style=for-the-badge)
![High volume](https://img.shields.io/badge/📦_Hundreds-of_agencies-1f6feb?style=for-the-badge)
![Leads](https://img.shields.io/badge/🎯_B2B-lead_gen-9333ea?style=for-the-badge)
![Export](https://img.shields.io/badge/Export-JSON·CSV·Excel·API-f59e0b?style=for-the-badge)

<br>

**Point it at any Clutch.co directory — `web-developers`, `digital-marketing`, `it-services` — and pull a clean, structured list of agencies with their websites, ratings, pricing and services.**
The fast way to build targeted B2B agency lead lists at scale.

</div>

---

### 📌 Overview

The **Clutch.co Scraper** turns Clutch's massive B2B directory into an
analysis-ready dataset. Give it one or more **category / location directory
URLs** (or build them from a category + location) and it returns one structured
record per agency: **name, website, rating, review count, minimum project size,
hourly rate, team size, location and the services they focus on**. Turn on
**profile enrichment** to follow each listing to its profile page and add
**website, full address, founded year and social links**.

Clutch sits behind **Cloudflare's managed challenge** — this actor clears it
with a real Chrome browser over **country-matched residential proxies**, so you
get the **server-rendered listing data** without any account, login or API key.

> ✅ Paste several directory URLs and raise `maxResults` to assemble a large,
> targeted **B2B lead list** in a single run.

---

### ✨ Features

| | Feature | Description |
|---|---|---|
| 🎯 | **B2B lead data** | Agency name, website, location, pricing & services — ready for outreach. |
| 🛡️ | **Cloudflare-ready** | Real-browser engine + residential proxies clear the managed challenge. |
| 📦 | **Hundreds at scale** | Auto-paginates each directory until your result cap is hit. |
| 📊 | **Ratings & reviews** | Star rating and review count for every provider. |
| 💵 | **Pricing signals** | Minimum project size, hourly rate band and team size. |
| 🔎 | **Profile enrichment** | Optional deep mode adds website, full address, founded year & socials. |
| 🧭 | **URL or builder** | Paste Clutch URLs directly, or build them from category + location. |
| 📤 | **Any format** | Export to JSON, CSV, Excel, HTML or pull via API & webhooks. |

---

### 🎯 Who it's for

- **Agencies & freelancers** — find partners, white-label vendors or competitors in your niche.
- **B2B sales & lead-gen** — build targeted lists of agencies by service and city for outreach.
- **Recruiters** — map service providers and their team sizes across markets.
- **Market researchers** — benchmark pricing, ratings and service mix across a category.
- **Investors & analysts** — survey the competitive landscape of a vertical or region.

---

### 🧾 Input

| Field | Type | Description |
|-------|------|-------------|
| `directoryUrls` | array | Clutch category/location URLs, e.g. `https://clutch.co/web-developers`. |
| `category` | string | Optional builder — a service category like `digital-marketing` (used if URLs are empty). |
| `location` | string | Optional builder — a city/country to combine with `category`, e.g. `london`. |
| `scrapeProfiles` | boolean | Follow each listing to its profile for website, address, founded year & socials. Default `false`. |
| `maxResults` | integer | Max agencies to save (auto-paginates to reach it). `0` = unlimited. Default `200`. |
| `proxyConfiguration` | object | Residential proxy (required). Pre-configured to Apify Proxy · RESIDENTIAL · US. |

#### Example input

```json
{
  "directoryUrls": ["https://clutch.co/web-developers"],
  "scrapeProfiles": false,
  "maxResults": 200,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

***

### 📦 Output

Each agency is saved as one structured record:

```json
{
  "name": "Lounge Lizard",
  "profileUrl": "https://clutch.co/profile/lounge-lizard",
  "websiteUrl": "https://www.loungelizard.com/",
  "rating": 4.8,
  "reviewCount": 43,
  "minProjectSize": "$25,000+",
  "hourlyRate": "$100 - $149 / hr",
  "teamSize": "50 - 249",
  "foundedYear": 1998,
  "location": "New York, NY",
  "address": "275 Madison Ave, New York, NY 10016, US",
  "serviceFocus": ["45% Web Development", "45% Web Design", "10% Branding"],
  "tagline": "Lounge Lizard is a versatile web development company...",
  "socialLinks": ["https://www.linkedin.com/company/lounge-lizard"],
  "sourceUrl": "https://clutch.co/web-developers",
  "scrapedAt": "2026-06-04T12:00:00.000Z"
}
```

#### 📖 Output field reference

| Field | Description |
|-------|-------------|
| `name` | Agency / service-provider name |
| `websiteUrl` | The agency's own website (un-wrapped from Clutch's redirect) |
| `rating` / `reviewCount` | Clutch star rating and number of reviews |
| `minProjectSize` | Minimum project budget the agency takes |
| `hourlyRate` | Hourly rate band (e.g. `$100 - $149 / hr`) |
| `teamSize` | Employee range (e.g. `50 - 249`) |
| `foundedYear` | Year founded *(profile mode)* |
| `location` / `address` | City/region; full address in profile mode |
| `serviceFocus` | Service breakdown the agency lists |
| `tagline` | Short company description |
| `socialLinks` | LinkedIn / X / Facebook / Instagram *(profile mode)* |
| `profileUrl` | The agency's Clutch profile URL |

***

### ⚙️ How it works

1. You provide Clutch **directory URLs** (or a category + location).
2. The actor opens each page in a **real Chrome browser** through residential proxies and clears the Cloudflare challenge.
3. It parses the **server-rendered listing** into clean agency records and **auto-paginates** to your cap.
4. With `scrapeProfiles` on, it visits each profile to enrich website, address, founded year and social links.
5. Results stream straight to your dataset.

No login, no cookies, no API key — only publicly listed agency data.

***

### ❓ FAQ

<details>
<summary><b>Where do I get the directory URLs?</b></summary><br>
Browse Clutch.co to any category or city listing (e.g. <code>clutch.co/web-developers</code> or <code>clutch.co/agencies/digital-marketing/london</code>) and paste the URL — or use the Category + Location builder fields.
</details>

<details>
<summary><b>Does it get past Cloudflare?</b></summary><br>
Yes — it uses a real Chrome browser with country-matched residential proxies to clear Clutch's managed Cloudflare challenge. Residential proxies are required.
</details>

<details>
<summary><b>How many agencies can I collect?</b></summary><br>
Hundreds per run — the actor paginates each directory automatically until <code>maxResults</code> is reached. Add more directory URLs for broader coverage.
</details>

<details>
<summary><b>What does profile mode add?</b></summary><br>
Turning on <code>scrapeProfiles</code> follows each listing to its profile page to add website, full address, founded year and social links — ideal for outreach-ready leads.
</details>

<details>
<summary><b>Do I need a Clutch account or API key?</b></summary><br>
No — the actor reads only public directory and profile data; no account, login or API key is used.
</details>

#### Is this a Clutch.co API alternative?

Yes — Clutch.co has no public API, so this scraper works as an unofficial Clutch API: point it at directory URLs and get structured agency records (name, website, rating, pricing, services) back, no API key required.

#### How do I export Clutch.co data to CSV or JSON?

Every run writes one record per agency to a dataset you can export to JSON, CSV, Excel or HTML, or pull via API and webhooks — ideal for building a Clutch agency dataset for outreach.

#### Can I scrape Clutch.co without login?

Yes — the actor clears Clutch's Cloudflare challenge with a real browser over residential proxies and reads only public listing and profile data, so no account or login is needed.

***

### 🔗 Works great with

- 🌐 **Website Contact Scraper** — turn each agency website into emails & phone numbers.
- 📧 **Bulk Email Verifier** — validate the contact emails before outreach.
- 🏢 **LinkedIn Company Scraper** — enrich agencies with company-page details.

***

<div align="center">

**Clutch.co Scraper · Clutch Agency Scraper · B2B Lead Generation · Agency Directory Scraper · Service Provider Leads · Marketing Agency Data · Clutch Unofficial API · Clutch Data Export · Export Clutch Agencies to CSV · Clutch Agency Dataset JSON**

<sub>⚖️ Collects publicly available business directory data only. You are responsible for compliance with Clutch.co's Terms and applicable laws.</sub>

</div>

### 📝 Changelog

#### 2026-06-07

- Docs: added coverage for using the scraper as a Clutch.co unofficial API, exporting Clutch agency data to CSV/JSON, and scraping Clutch.co without login.

#### 2026-06-05

- 🛡️ Reliability fix: results are no longer dropped by strict output validation — runs now complete cleanly even at high volume (thousands of results).
- ⚡ Stability & performance hardening; fresh rebuild.

#### 2026-06-04

- Verified live & refreshed build — reliability/maintenance pass.

# Actor input Schema

## `directoryUrls` (type: `array`):

Clutch.co category / location directory pages to scrape. Paste the URL of any Clutch listing, e.g. 'https://clutch.co/web-developers' or 'https://clutch.co/agencies/digital-marketing/london'.

## `category` (type: `string`):

Optional. Build a directory URL from a service category instead of pasting one — e.g. 'digital-marketing', 'web-developers', 'it-services'. Used only if you leave Directory URLs empty (or to add more).

## `location` (type: `string`):

Optional. A city or country to combine with Category, e.g. 'london', 'new-york', 'united-states'.

## `scrapeProfiles` (type: `boolean`):

Follow each listing to its /profile/<slug> page to enrich with website, full address, founded year and social links. Slower but richer — best for lead generation. Leave off for fast bulk listing data.

## `maxResults` (type: `integer`):

Maximum number of agencies to save across all directory URLs. The scraper paginates automatically until this cap is reached. 0 = unlimited.

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

Clutch.co is protected by Cloudflare — country-matched RESIDENTIAL proxies are required. Keep the default (Apify Proxy · RESIDENTIAL · US).

## Actor input object example

```json
{
  "directoryUrls": [
    "https://clutch.co/web-developers",
    "https://clutch.co/it-services"
  ],
  "category": "digital-marketing",
  "location": "london",
  "scrapeProfiles": false,
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `name` (type: `string`):

Agency name

## `websiteUrl` (type: `string`):

Agency website

## `rating` (type: `string`):

Clutch rating

## `reviewCount` (type: `string`):

Review count

## `minProjectSize` (type: `string`):

Min project size

## `hourlyRate` (type: `string`):

Hourly rate band

## `teamSize` (type: `string`):

Team size

## `location` (type: `string`):

Location

## `profileUrl` (type: `string`):

Clutch profile URL

# 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 = {
    "directoryUrls": [
        "https://clutch.co/web-developers"
    ],
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/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 = {
    "directoryUrls": ["https://clutch.co/web-developers"],
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("logiover/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 '{
  "directoryUrls": [
    "https://clutch.co/web-developers"
  ],
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call logiover/clutch-co-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Clutch.co Scraper - B2B Agency Leads & Data",
        "description": "Scrape Clutch.co agencies without login: name, website, rating, pricing & services. Export Clutch agency data to CSV/JSON - an unofficial Clutch API for B2B leads.",
        "version": "1.0",
        "x-build-id": "qSwhyYW2HHgrdSMtC"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/logiover~clutch-co-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-logiover-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/logiover~clutch-co-scraper/runs": {
            "post": {
                "operationId": "runs-sync-logiover-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/logiover~clutch-co-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-logiover-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",
                "properties": {
                    "directoryUrls": {
                        "title": "Clutch directory URLs",
                        "type": "array",
                        "description": "Clutch.co category / location directory pages to scrape. Paste the URL of any Clutch listing, e.g. 'https://clutch.co/web-developers' or 'https://clutch.co/agencies/digital-marketing/london'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category (builder)",
                        "type": "string",
                        "description": "Optional. Build a directory URL from a service category instead of pasting one — e.g. 'digital-marketing', 'web-developers', 'it-services'. Used only if you leave Directory URLs empty (or to add more)."
                    },
                    "location": {
                        "title": "Location (builder)",
                        "type": "string",
                        "description": "Optional. A city or country to combine with Category, e.g. 'london', 'new-york', 'united-states'."
                    },
                    "scrapeProfiles": {
                        "title": "Visit each agency profile (full details)",
                        "type": "boolean",
                        "description": "Follow each listing to its /profile/<slug> page to enrich with website, full address, founded year and social links. Slower but richer — best for lead generation. Leave off for fast bulk listing data.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of agencies to save across all directory URLs. The scraper paginates automatically until this cap is reached. 0 = unlimited.",
                        "default": 200
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Clutch.co is protected by Cloudflare — country-matched RESIDENTIAL proxies are required. Keep the default (Apify Proxy · RESIDENTIAL · US).",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
