# Software Advice Reviews Scraper (Same as Capterra) | $2.5/1K (`softwaresubs29/capterra-reviews-scraper`) Actor

Capterra reviews scraper that extracts complete, structured review data, overall and sub-ratings, pros, cons, reviewer role, industry, company size, verified status, and vendor responses — from any Capterra product page, plus full product listings from any Capterra category.

- **URL**: https://apify.com/softwaresubs29/capterra-reviews-scraper.md
- **Developed by:** [Shab Codes](https://apify.com/softwaresubs29) (community)
- **Categories:** Automation, Lead generation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 review scrapeds

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

## Capterra Reviews Scraper

**Capterra reviews scraper** that extracts complete, structured review data — overall and sub-ratings, pros, cons, reviewer role, industry, company size, verified status, and vendor responses — from any Capterra product page, plus full product listings from any Capterra category. You are **charged per successfully extracted review. Blocked or empty results are never billed.**

*Last updated: July 2026 · actively maintained.*

### Why this one

- **No empty charges — ever.** A result is billed only after it has been extracted, validated, and written to your dataset. Runs that hit anti-bot walls or return nothing cost you nothing. That is a guarantee, not a goal.
- **Every field, every row.** Most Capterra scrapers return a title and a star count. This one returns the full review object: five sub-ratings, pros/cons/overall comment, reasons for choosing and switching, alternatives considered, reviewer role, industry, company size, usage duration, LinkedIn-verified flag, and vendor responses.
- **Built for survival, not best-case runs.** Reviews are read from Capterra's embedded structured data (more stable than HTML scraping), with an independent DOM fallback, a real-browser engine that clears Capterra's anti-bot checks, rotating residential sessions, block detection, and exponential backoff. When Capterra changes cosmetics — or defenses — this actor keeps working.

### What it does

**Mode A — Product reviews.** Give it Capterra product URLs; it extracts every review (or up to your limit) with all fields below.

**Mode B — Category discovery.** Give it a category URL (e.g. `https://www.capterra.com/collaboration-software/`) or a search term (matched against Capterra's 900+ category directory); it enumerates products with name, rating, and review count — and can optionally fan out and scrape each product's reviews too.

### Input examples

Scrape reviews for one or more products:

```json
{
    "mode": "product_reviews",
    "productUrls": ["https://www.capterra.com/p/135003/Slack/reviews/"],
    "maxReviewsPerProduct": 200,
    "sortReviewsBy": "most_recent"
}
````

Discover all products in a category:

```json
{
    "mode": "category_discovery",
    "categoryUrl": "https://www.capterra.com/collaboration-software/",
    "maxProducts": 200,
    "scrapeReviewsForDiscovered": false
}
```

### Output schema (one item per review)

| Field | Type | Notes |
| --- | --- | --- |
| `source` | string | Always `"capterra"` |
| `productId` / `productName` / `productSlug` / `productUrl` | string | Product identity |
| `productCategory` | string|null | From the page's breadcrumb |
| `productAvgRating` / `productReviewCount` | number|null | Product-level aggregates |
| `reviewId` | string | Stable Capterra review id |
| `reviewUrl` | null | Capterra exposes no per-review permalink — null, never fabricated |
| `title` | string|null | Review headline |
| `overallRating` | number | 1–5 |
| `subRatings.easeOfUse` | number|null | 1–5 |
| `subRatings.customerService` | number|null | 1–5 |
| `subRatings.features` | number|null | 1–5 |
| `subRatings.valueForMoney` | number|null | 1–5 |
| `subRatings.likelihoodToRecommend` | number|null | 0–10 |
| `pros` / `cons` / `overallComment` | string|null | Full review text |
| `adviceToOthers` | string|null | |
| `reasonsForChoosing` / `reasonsForSwitching` | string|null | Purchase context |
| `alternativesConsidered` / `switchedFrom` | string\[] | Product names |
| `incentivized` | string|null | e.g. `"NominalGift"` if Capterra disclosed an incentive |
| `reviewerName` | string|null | As displayed publicly by Capterra |
| `reviewerRole` / `reviewerIndustry` | string|null | |
| `companySize` | string|null | Normalized buckets: `self-employed`, `1-10`, … `10001+` |
| `usageDuration` | string|null | e.g. `"1-2 years"` |
| `verified` | boolean|null | Capterra's reviewer-validation flag |
| `verifiedLinkedIn` | boolean|null | |
| `anonymous` | boolean|null | |
| `sourceOfReview` | string|null | e.g. `"Capterra"` |
| `publishedAt` | string|null | ISO-8601 date |
| `helpfulCount` | null | Not exposed by Capterra — null, never fabricated |
| `vendorResponse` | string|null | Vendor's reply text if present |
| `scrapedAt` | string | ISO-8601 timestamp |

Category discovery items have `"type": "product"` with `productId`, `productName`, `productSlug`, `productUrl`, `productAvgRating`, `productReviewCount`, and `description`.

Missing data is always `null` — fields are never guessed or fabricated.

### Pricing, in plain words

You pay a flat rate per **successfully extracted review** (and a smaller rate per discovered product in category mode). Before anything is billed, the row must pass a validation gate: it must contain an overall rating and real review text. Requests that get blocked, return empty pages, or fail validation are retried or skipped — they are **never** written to your dataset and **never** charged. There is no rental fee and no charge for starting a run that finds nothing.

### Sorting and filtering

- `sortReviewsBy: most_helpful` (default) is Capterra's own order and is exact.
- `most_recent`, `highest`, `lowest` sort the reviews the run collected. Capterra serves reviews in most-helpful order, so with a `maxReviewsPerProduct` cap the run fetches that many reviews first, then sorts them. To get a complete date-ordered set, leave `maxReviewsPerProduct` at 0 (all reviews).
- `minRating` / `maxRating` / `postedWithinDays` filter rows before they are saved (and before they are billed).

### Limitations

- Scope is `capterra.com` (the primary/US site). International Capterra domains are not covered in v1.
- Reviews are fetched in Capterra's most-helpful order; see the sorting note above.
- Per-review permalinks and helpful-vote counts are not publicly exposed by Capterra, so those fields are null rather than invented.
- Very large products (20,000+ reviews) work but take proportionally longer; use `maxReviewsPerProduct` if you don't need the full archive.

### Compliance

This actor accesses only publicly visible review pages — no login, no paywall or authentication bypass, and no personal data beyond what Capterra itself displays publicly (reviewer display name, role, company size). It does not attempt to de-anonymize reviewers who chose anonymity. Please use reasonable volumes and respect Capterra's terms of service and applicable data-protection laws; you are responsible for how you use the extracted data.

# Actor input Schema

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

What to scrape. <b>Product reviews</b> extracts full reviews from the product URLs below. <b>Category discovery</b> enumerates products from a category or search page.

## `productUrls` (type: `array`):

Capterra product URLs (e.g. <code>https://www.capterra.com/p/135003/Slack/</code>), reviews URLs, or bare <code>id/slug</code> pairs (e.g. <code>135003/Slack</code>). Used in Product reviews mode.

## `categoryUrl` (type: `string`):

Capterra category listing URL, e.g. <code>https://www.capterra.com/collaboration-software/</code>. Used in Category discovery mode.

## `searchTerm` (type: `string`):

Alternative to the category URL: a phrase matched against Capterra's category directory (e.g. <code>project management</code> → Project Management Software). Used in Category discovery mode.

## `maxReviewsPerProduct` (type: `integer`):

Stop after this many reviews per product. 0 = all reviews.

## `maxProducts` (type: `integer`):

Category discovery mode: stop after this many products. 0 = all.

## `scrapeReviewsForDiscovered` (type: `boolean`):

Category discovery mode: after enumerating products, fan out and scrape their reviews too (respects Max reviews per product).

## `sortReviewsBy` (type: `string`):

Order of reviews in the dataset. <b>Most helpful</b> is Capterra's own order and is exact. Other sorts are applied to the set of reviews the run collects (fetching happens in Capterra's most-helpful order).

## `minRating` (type: `integer`):

Only keep reviews with overall rating ≥ this value (1–5). 0 = no filter.

## `maxRating` (type: `integer`):

Only keep reviews with overall rating ≤ this value (1–5). 0 = no filter.

## `postedWithinDays` (type: `integer`):

Only keep reviews published within the last N days. 0 = no filter.

## `includeProductMeta` (type: `boolean`):

Include product-level aggregates (average rating, review count, category) on every review row.

## `maxItems` (type: `integer`):

Hard cap on dataset items across the whole run. 0 = no cap.

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

Residential proxies are strongly recommended — Capterra blocks datacenter IPs.

## Actor input object example

```json
{
  "mode": "product_reviews",
  "productUrls": [
    "https://www.capterra.com/p/135003/Slack/reviews/"
  ],
  "maxReviewsPerProduct": 100,
  "maxProducts": 100,
  "scrapeReviewsForDiscovered": false,
  "sortReviewsBy": "most_helpful",
  "minRating": 0,
  "maxRating": 0,
  "postedWithinDays": 0,
  "includeProductMeta": true,
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "mode": "product_reviews",
    "productUrls": [
        "https://www.capterra.com/p/135003/Slack/reviews/"
    ],
    "maxReviewsPerProduct": 100,
    "includeProductMeta": true,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("softwaresubs29/capterra-reviews-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 = {
    "mode": "product_reviews",
    "productUrls": ["https://www.capterra.com/p/135003/Slack/reviews/"],
    "maxReviewsPerProduct": 100,
    "includeProductMeta": True,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("softwaresubs29/capterra-reviews-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 '{
  "mode": "product_reviews",
  "productUrls": [
    "https://www.capterra.com/p/135003/Slack/reviews/"
  ],
  "maxReviewsPerProduct": 100,
  "includeProductMeta": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call softwaresubs29/capterra-reviews-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Software Advice Reviews Scraper (Same as Capterra) | $2.5/1K",
        "description": "Capterra reviews scraper that extracts complete, structured review data, overall and sub-ratings, pros, cons, reviewer role, industry, company size, verified status, and vendor responses — from any Capterra product page, plus full product listings from any Capterra category.",
        "version": "0.1",
        "x-build-id": "rSkN5a4fPlyJXy7EF"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/softwaresubs29~capterra-reviews-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-softwaresubs29-capterra-reviews-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/softwaresubs29~capterra-reviews-scraper/runs": {
            "post": {
                "operationId": "runs-sync-softwaresubs29-capterra-reviews-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/softwaresubs29~capterra-reviews-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-softwaresubs29-capterra-reviews-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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "product_reviews",
                            "category_discovery"
                        ],
                        "type": "string",
                        "description": "What to scrape. <b>Product reviews</b> extracts full reviews from the product URLs below. <b>Category discovery</b> enumerates products from a category or search page.",
                        "default": "product_reviews"
                    },
                    "productUrls": {
                        "title": "Product URLs or slugs",
                        "type": "array",
                        "description": "Capterra product URLs (e.g. <code>https://www.capterra.com/p/135003/Slack/</code>), reviews URLs, or bare <code>id/slug</code> pairs (e.g. <code>135003/Slack</code>). Used in Product reviews mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "categoryUrl": {
                        "title": "Category or search URL",
                        "type": "string",
                        "description": "Capterra category listing URL, e.g. <code>https://www.capterra.com/collaboration-software/</code>. Used in Category discovery mode."
                    },
                    "searchTerm": {
                        "title": "Search term",
                        "type": "string",
                        "description": "Alternative to the category URL: a phrase matched against Capterra's category directory (e.g. <code>project management</code> → Project Management Software). Used in Category discovery mode."
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max reviews per product",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop after this many reviews per product. 0 = all reviews.",
                        "default": 100
                    },
                    "maxProducts": {
                        "title": "Max products (discovery)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Category discovery mode: stop after this many products. 0 = all.",
                        "default": 100
                    },
                    "scrapeReviewsForDiscovered": {
                        "title": "Also scrape reviews of discovered products",
                        "type": "boolean",
                        "description": "Category discovery mode: after enumerating products, fan out and scrape their reviews too (respects Max reviews per product).",
                        "default": false
                    },
                    "sortReviewsBy": {
                        "title": "Sort reviews by",
                        "enum": [
                            "most_helpful",
                            "most_recent",
                            "highest",
                            "lowest"
                        ],
                        "type": "string",
                        "description": "Order of reviews in the dataset. <b>Most helpful</b> is Capterra's own order and is exact. Other sorts are applied to the set of reviews the run collects (fetching happens in Capterra's most-helpful order).",
                        "default": "most_helpful"
                    },
                    "minRating": {
                        "title": "Min rating",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Only keep reviews with overall rating ≥ this value (1–5). 0 = no filter.",
                        "default": 0
                    },
                    "maxRating": {
                        "title": "Max rating",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Only keep reviews with overall rating ≤ this value (1–5). 0 = no filter.",
                        "default": 0
                    },
                    "postedWithinDays": {
                        "title": "Posted within days",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep reviews published within the last N days. 0 = no filter.",
                        "default": 0
                    },
                    "includeProductMeta": {
                        "title": "Attach product meta to each review",
                        "type": "boolean",
                        "description": "Include product-level aggregates (average rating, review count, category) on every review row.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max items (whole run)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on dataset items across the whole run. 0 = no cap.",
                        "default": 0
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential proxies are strongly recommended — Capterra blocks datacenter IPs.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
