# Clutch.co Scraper (`morkerr/clutch-co-scraper`) Actor

Scrape business listings from Clutch.co directory pages. Extract company names, emails, ratings, reviews, project sizes, hourly rates, employee counts, locations, services, phone numbers, and websites.

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

## Pricing

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

## Clutch.co Category URLs

Get every Clutch.co directory category URL in one run. Outputs 80+ category URLs organized by group with display names — ready to paste into any Clutch.co scraper.

### Pricing

| | Per run |
|--|---------|
| **Price** | ~$4.80 (80 records × $0.06) |
| **Usage cost** | ~$0.002 (compute only) |

One run covers **all categories**. Run once, copy the URLs into your main scraper.

### Output

80+ categories across 5 groups:

| Group | Example |
|-------|---------|
| Advertising & Marketing | SEO, PPC, Digital Marketing, Branding |
| Development | Web Developers, Mobile Apps, AI, eCommerce |
| Design & Production | Web Design, UX/UI, Graphic Design |
| IT Services | Cybersecurity, Cloud Consulting, Analytics |
| Business Services | Call Centers, HR, Accounting, Legal |

Each record: `group`, `title`, `url` (full Clutch.co directory link).

### Use Case

Find category URLs → paste into Clutch.co company scraper → extract listings. No need to browse Clutch.co manually or guess URLs.

# Actor input Schema

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

Select one or more categories to scrape.
## `categoryUrls` (type: `string`):

Additional Clutch.co directory URLs (one per line). Useful if the category you need isn't listed in the dropdown above.
Examples:
https://clutch.co/web-developers
https://clutch.co/developers/artificial-intelligence
## `location` (type: `string`):

Filter results by location. Enter a US city (e.g., 'New York City'), US state (e.g., 'Texas'), or country (e.g., 'United Kingdom'). Leave empty for all locations.
## `maxPagesPerCategory` (type: `integer`):

Number of pagination pages to scrape per category (each page shows ~50 listings). Set to 0 for unlimited — scrapes all available pages until no more exist.
## `minRating` (type: `number`):

Only include companies with at least this star rating (e.g. 4.0, 3.5). Set to 0 to include all.
## `excludeFeatured` (type: `boolean`):

Skip promoted/sponsored listings at the top of each page.
## `scrapeEmails` (type: `boolean`):

When enabled, visits each company's website to extract email addresses. This significantly increases run time (several seconds per website).
## `pageTimeout` (type: `integer`):

Maximum time to wait for each directory page to fully load.
## `proxyConfiguration` (type: `object`):

Proxy settings for the scraper. Apify proxy recommended to avoid IP blocking.

## Actor input object example

```json
{
  "categories": [
    "https://clutch.co/web-developers",
    "https://clutch.co/developers/ecommerce",
    "https://clutch.co/developers/artificial-intelligence"
  ],
  "categoryUrls": "",
  "location": "",
  "maxPagesPerCategory": 10,
  "minRating": 0,
  "excludeFeatured": false,
  "scrapeEmails": false,
  "pageTimeout": 60000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "BUYPROXIES94952"
    ]
  }
}
````

# Actor output Schema

## `group` (type: `string`):

The group this category belongs to (e.g. Advertising & Marketing, Development, Design & Production, IT Services, Business Services).

## `title` (type: `string`):

Display name of the category as shown on Clutch.co.

## `url` (type: `string`):

Full URL of the Clutch.co directory page for this category.

# 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 = {
    "categoryUrls": "",
    "location": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("morkerr/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 = {
    "categoryUrls": "",
    "location": "",
}

# Run the Actor and wait for it to finish
run = client.actor("morkerr/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 '{
  "categoryUrls": "",
  "location": ""
}' |
apify call morkerr/clutch-co-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Clutch.co Scraper",
        "description": "Scrape business listings from Clutch.co directory pages. Extract company names, emails, ratings, reviews, project sizes, hourly rates, employee counts, locations, services, phone numbers, and websites.",
        "version": "0.0",
        "x-build-id": "wyNYWVbumyt6r3nJQ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/morkerr~clutch-co-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-morkerr-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/morkerr~clutch-co-scraper/runs": {
            "post": {
                "operationId": "runs-sync-morkerr-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/morkerr~clutch-co-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-morkerr-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": {
                    "categories": {
                        "title": "Pick Categories",
                        "type": "array",
                        "description": "Select one or more categories to scrape.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "https://clutch.co/agencies",
                                "https://clutch.co/agencies/digital",
                                "https://clutch.co/agencies/digital-strategy",
                                "https://clutch.co/agencies/digital-marketing",
                                "https://clutch.co/agencies/social-media-marketing",
                                "https://clutch.co/agencies/content-marketing",
                                "https://clutch.co/agencies/email",
                                "https://clutch.co/agencies/inbound-marketing",
                                "https://clutch.co/agencies/direct-marketing",
                                "https://clutch.co/agencies/app-marketing",
                                "https://clutch.co/agencies/event",
                                "https://clutch.co/agencies/experiential",
                                "https://clutch.co/agencies/creative",
                                "https://clutch.co/pr-firms",
                                "https://clutch.co/agencies/video-production",
                                "https://clutch.co/agencies/branding",
                                "https://clutch.co/agencies/naming",
                                "https://clutch.co/agencies/ppc",
                                "https://clutch.co/seo-firms",
                                "https://clutch.co/agencies/sem",
                                "https://clutch.co/agencies/conversion-optimization",
                                "https://clutch.co/agencies/market-research",
                                "https://clutch.co/agencies/media-buying",
                                "https://clutch.co/it-services/marketing-automation",
                                "https://clutch.co/web-developers",
                                "https://clutch.co/developers",
                                "https://clutch.co/directory/mobile-application-developers",
                                "https://clutch.co/directory/iphone-application-developers",
                                "https://clutch.co/directory/android-application-developers",
                                "https://clutch.co/developers/ecommerce",
                                "https://clutch.co/developers/artificial-intelligence",
                                "https://clutch.co/developers/blockchain",
                                "https://clutch.co/developers/virtual-reality",
                                "https://clutch.co/developers/internet-of-things",
                                "https://clutch.co/developers/ruby-rails",
                                "https://clutch.co/developers/shopify",
                                "https://clutch.co/developers/wordpress",
                                "https://clutch.co/developers/drupal",
                                "https://clutch.co/developers/magento",
                                "https://clutch.co/developers/dot-net",
                                "https://clutch.co/web-developers/php",
                                "https://clutch.co/app-developers/wearables",
                                "https://clutch.co/developers/testing",
                                "https://clutch.co/agencies/design",
                                "https://clutch.co/agencies/digital-design",
                                "https://clutch.co/web-designers",
                                "https://clutch.co/agencies/ui-ux",
                                "https://clutch.co/agencies/packaging-design",
                                "https://clutch.co/agencies/print-design",
                                "https://clutch.co/agencies/graphic-designers",
                                "https://clutch.co/agencies/logo-designers",
                                "https://clutch.co/agencies/product-design",
                                "https://clutch.co/agencies/design/interior",
                                "https://clutch.co/it-services",
                                "https://clutch.co/it-services/analytics",
                                "https://clutch.co/it-services/staff-augmentation",
                                "https://clutch.co/it-services/cybersecurity",
                                "https://clutch.co/it-services/cloud",
                                "https://clutch.co/it-services/msp",
                                "https://clutch.co/call-centers",
                                "https://clutch.co/call-centers/answering-services",
                                "https://clutch.co/call-centers/telemarketing",
                                "https://clutch.co/bpo",
                                "https://clutch.co/hr",
                                "https://clutch.co/hr/staffing",
                                "https://clutch.co/hr/recruiting",
                                "https://clutch.co/hr/consultants",
                                "https://clutch.co/hr/executive-search",
                                "https://clutch.co/hr/peo",
                                "https://clutch.co/hr/outsourcing",
                                "https://clutch.co/consulting",
                                "https://clutch.co/accounting",
                                "https://clutch.co/accounting/payroll",
                                "https://clutch.co/translation",
                                "https://clutch.co/transcription",
                                "https://clutch.co/real-estate",
                                "https://clutch.co/law",
                                "https://clutch.co/logistics/supply-chain-management",
                                "https://clutch.co/logistics/fulfillment-services",
                                "https://clutch.co/logistics/freight-forwarders"
                            ],
                            "enumTitles": [
                                "Advertising (Advertising & Marketing)",
                                "Full Service Digital (Advertising & Marketing)",
                                "Digital Strategy (Advertising & Marketing)",
                                "Digital Marketing (Advertising & Marketing)",
                                "Social Media Marketing (Advertising & Marketing)",
                                "Content Marketing (Advertising & Marketing)",
                                "Email Marketing (Advertising & Marketing)",
                                "Inbound Marketing (Advertising & Marketing)",
                                "Direct Marketing (Advertising & Marketing)",
                                "Mobile & App Marketing (Advertising & Marketing)",
                                "Event Marketing (Advertising & Marketing)",
                                "Experiential Marketing (Advertising & Marketing)",
                                "Creative (Advertising & Marketing)",
                                "Public Relations (Advertising & Marketing)",
                                "Video Production (Advertising & Marketing)",
                                "Branding (Advertising & Marketing)",
                                "Naming (Advertising & Marketing)",
                                "PPC (Advertising & Marketing)",
                                "SEO (Advertising & Marketing)",
                                "SEM (Advertising & Marketing)",
                                "Conversion Optimization (Advertising & Marketing)",
                                "Market Research (Advertising & Marketing)",
                                "Media Planning and Buying (Advertising & Marketing)",
                                "Marketing Automation (Advertising & Marketing)",
                                "Web Developers (Development)",
                                "Software Developers (Development)",
                                "Mobile App Development (Development)",
                                "iPhone App Development (Development)",
                                "Android App Development (Development)",
                                "eCommerce (Development)",
                                "Artificial Intelligence (Development)",
                                "Blockchain (Development)",
                                "AR/VR (Development)",
                                "IoT (Development)",
                                "Ruby on Rails (Development)",
                                "Shopify (Development)",
                                "WordPress Developers (Development)",
                                "Drupal (Development)",
                                "Magento (Development)",
                                ".NET Developers (Development)",
                                "PHP (Development)",
                                "Wearables (Development)",
                                "Software Testing (Development)",
                                "Design (Design & Production)",
                                "Digital Design (Design & Production)",
                                "Web Design (Design & Production)",
                                "User Experience (Design & Production)",
                                "Packaging Design (Design & Production)",
                                "Print Design (Design & Production)",
                                "Graphic Design (Design & Production)",
                                "Logo Design (Design & Production)",
                                "Product Design (Design & Production)",
                                "Interior Design (Design & Production)",
                                "IT Services (IT Services)",
                                "BI and Big Data (IT Services)",
                                "Staff Augmentation (IT Services)",
                                "Cybersecurity (IT Services)",
                                "Cloud Consulting (IT Services)",
                                "Managed Service Providers (IT Services)",
                                "Call Centers (Business Services)",
                                "Answering Services (Business Services)",
                                "Telemarketing (Business Services)",
                                "BPO (Business Services)",
                                "Human Resources (Business Services)",
                                "HR Staffing (Business Services)",
                                "HR Recruiting (Business Services)",
                                "HR Consulting (Business Services)",
                                "Executive Search (Business Services)",
                                "PEO (Business Services)",
                                "HR Outsourcing (Business Services)",
                                "Consulting (Business Services)",
                                "Accounting (Business Services)",
                                "Payroll Processing (Business Services)",
                                "Translation (Business Services)",
                                "Transcription (Business Services)",
                                "Real Estate (Business Services)",
                                "Legal (Business Services)",
                                "Logistics & Supply Chain (Business Services)",
                                "Fulfillment (Business Services)",
                                "Freight Forwarding (Business Services)"
                            ]
                        },
                        "default": [
                            "https://clutch.co/web-developers",
                            "https://clutch.co/developers/ecommerce",
                            "https://clutch.co/developers/artificial-intelligence"
                        ]
                    },
                    "categoryUrls": {
                        "title": "Or Enter Custom URLs Manually",
                        "type": "string",
                        "description": "Additional Clutch.co directory URLs (one per line). Useful if the category you need isn't listed in the dropdown above.\nExamples:\nhttps://clutch.co/web-developers\nhttps://clutch.co/developers/artificial-intelligence",
                        "default": ""
                    },
                    "location": {
                        "title": "Location Filter",
                        "type": "string",
                        "description": "Filter results by location. Enter a US city (e.g., 'New York City'), US state (e.g., 'Texas'), or country (e.g., 'United Kingdom'). Leave empty for all locations.",
                        "default": ""
                    },
                    "maxPagesPerCategory": {
                        "title": "Max Pages per Category",
                        "minimum": 0,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Number of pagination pages to scrape per category (each page shows ~50 listings). Set to 0 for unlimited — scrapes all available pages until no more exist.",
                        "default": 10
                    },
                    "minRating": {
                        "title": "Minimum Rating",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "number",
                        "description": "Only include companies with at least this star rating (e.g. 4.0, 3.5). Set to 0 to include all.",
                        "default": 0
                    },
                    "excludeFeatured": {
                        "title": "Exclude Featured",
                        "type": "boolean",
                        "description": "Skip promoted/sponsored listings at the top of each page.",
                        "default": false
                    },
                    "scrapeEmails": {
                        "title": "Scrape Emails from Websites",
                        "type": "boolean",
                        "description": "When enabled, visits each company's website to extract email addresses. This significantly increases run time (several seconds per website).",
                        "default": false
                    },
                    "pageTimeout": {
                        "title": "Page Load Timeout (ms)",
                        "minimum": 5000,
                        "type": "integer",
                        "description": "Maximum time to wait for each directory page to fully load.",
                        "default": 60000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings for the scraper. Apify proxy recommended to avoid IP blocking.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "BUYPROXIES94952"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
