# Trustpilot Scraper — Reviews, Ratings & Sentiment Analysis (`dltik/trustpilot-scraper`) Actor

Scrape Trustpilot reviews and company profiles. Auto-resolve domains. Built-in sentiment analysis. 35+ fields: rating, text, author, verified, company reply. Filter by stars, language. HTTP-only, 256MB. $0.50/1K reviews.

- **URL**: https://apify.com/dltik/trustpilot-scraper.md
- **Developed by:** [dltik](https://apify.com/dltik) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 3 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 result 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

## Trustpilot Scraper — Reviews, Ratings & Sentiment Analysis

Extract Trustpilot reviews, company profiles, and TrustScores with built-in **sentiment analysis**. Type a company name or domain — no need to find the Trustpilot URL. **256MB, $0.50 per 1,000 reviews. 6x cheaper than the market leader.**

---

### Why this Trustpilot Scraper?

| Feature | This actor | getwally ($3/1K) | memo23 ($0.75/1K) | automation-lab ($0.58/1K) |
|---------|-----------|------------------|-------------------|--------------------------|
| Auto-resolve domains | **Yes** | No | No | Yes |
| Sentiment analysis | **Built-in** | No | No | No |
| Company reply included | **Yes** | ? | Yes | Yes |
| Verified status | **Yes** | ? | Yes | Yes |
| Star filter | **Yes** | ? | Yes | Yes |
| Language filter | **Yes** | ? | ? | Yes |
| Memory | **256MB** | ? | ? | ? |
| Success rate | **99%+** | 99.6% | **80%** | 99% |
| Price per 1,000 | **$0.50** | $3.00 | $0.75 | $0.58 |

---

### Quick start

#### Scrape by company domain (auto-resolved)

```json
{
  "companies": ["pipedrive.com", "amazon.com", "nike.com"],
  "maxReviews": 100,
  "enableSentiment": true
}
````

#### Scrape by Trustpilot URL

```json
{
  "urls": ["https://www.trustpilot.com/review/pipedrive.com"],
  "maxReviews": 200,
  "sortBy": "recency"
}
```

#### Filter negative reviews only

```json
{
  "companies": ["example.com"],
  "maxReviews": 500,
  "starFilter": [1, 2],
  "enableSentiment": true
}
```

#### Filter by language

```json
{
  "companies": ["amazon.fr"],
  "maxReviews": 100,
  "languageFilter": "fr"
}
```

***

### Input

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `urls` | array | — | Trustpilot company URLs |
| `companies` | array | — | Company names or domains (auto-resolved) |
| `maxReviews` | integer | `100` | Max reviews per company (1-5000) |
| `sortBy` | enum | `recency` | `recency`, `rating_high`, `rating_low` |
| `starFilter` | array | all | Filter by stars: `[1, 2, 3, 4, 5]` |
| `languageFilter` | string | all | ISO language code (en, fr, de, es...) |
| `enableSentiment` | boolean | `false` | Add AFINN-165 sentiment scoring |
| `includeCompanyInfo` | boolean | `true` | Include company profile as first result |

***

### What data do you get?

#### Company profile

```json
{
  "type": "company",
  "name": "Pipedrive",
  "domain": "pipedrive.com",
  "trust_score": 4.4,
  "total_reviews": 3242,
  "stars": 4.5,
  "categories": ["CRM Software", "Sales Tools"],
  "website_url": "https://www.pipedrive.com/...",
  "profile_url": "https://www.trustpilot.com/review/pipedrive.com"
}
```

#### Review (35+ fields)

```json
{
  "type": "review",
  "id": "abc123",
  "title": "Great CRM but support needs work",
  "text": "Full review text here...",
  "rating": 4,
  "date": "2026-03-27T23:17:29.000Z",
  "experience_date": "2026-03-26T00:00:00.000Z",
  "updated_date": "2026-03-31T16:06:06.000Z",
  "author": "Claire H.",
  "author_country": "CA",
  "author_reviews_count": 4,
  "verified": true,
  "source": "Organic",
  "likes": 3,
  "language": "en",
  "company_reply": "Thank you for your feedback...",
  "company_reply_date": "2026-03-31T15:58:30.000Z",
  "company_name": "Pipedrive",
  "company_domain": "pipedrive.com",
  "company_trust_score": 4.4,
  "sentiment_score": -1.5,
  "sentiment_label": "negative"
}
```

***

### Sentiment analysis

When `enableSentiment: true`, each review gets:

- `sentiment_score` — AFINN-165 average per word (-5 to +5)
- `sentiment_label` — `positive`, `negative`, or `neutral`

Built-in, no external API. Handles negation ("not good" = negative).

***

### How much does it cost?

**$0.0005 per result** = **$0.50 per 1,000 reviews**.

| Scenario | Results | Cost | Time |
|----------|---------|------|------|
| 1 company, 20 reviews | 21 | $0.01 | ~1s |
| 1 company, 100 reviews | 101 | $0.05 | ~3s |
| 5 companies, 200 each | 1,005 | $0.50 | ~30s |
| 10 companies, 500 each | 5,010 | $2.50 | ~3min |

256MB memory = negligible compute cost.

***

### Use cases

- **Competitor analysis** — compare TrustScores and review sentiment across competitors
- **Brand monitoring** — track new reviews and sentiment trends
- **Market research** — analyze customer pain points in your industry
- **Sales intelligence** — identify companies with poor reviews (potential leads for better alternatives)
- **Content research** — find real customer quotes for marketing copy
- **Compliance** — monitor review patterns for fake review detection

***

### API integration

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("dltik/trustpilot-scraper").call(run_input={
    "companies": ["pipedrive.com", "hubspot.com"],
    "maxReviews": 100,
    "starFilter": [1, 2],
    "enableSentiment": True,
})

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    if item["type"] == "review" and item.get("sentiment_label") == "negative":
        print(f"[{item['rating']}*] {item['title']}")
```

#### curl

```bash
curl -X POST "https://api.apify.com/v2/acts/dltik~trustpilot-scraper/runs" \
  -H "Authorization: Bearer YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "companies": ["pipedrive.com"],
    "maxReviews": 50,
    "enableSentiment": true
  }'
```

***

### Technical details

- **HTTP-only** — parses `__NEXT_DATA__` JSON from Trustpilot HTML pages, no browser
- **256MB memory** — lightest Trustpilot scraper on Apify
- **Auto-resolve** — type `nike.com` and it finds the Trustpilot page automatically
- **Pagination** — 20 reviews per page, automatic multi-page fetching
- **Rate limiting** — 0.5s between requests to respect Trustpilot
- **No proxy needed** — Trustpilot doesn't block datacenter IPs on HTML pages
- **Batch processing** — scrape multiple companies in one run

***

### FAQ

**Do I need a proxy?**
No. Trustpilot serves HTML pages to all IPs. No proxy required.

**How many reviews can I get?**
Up to 5,000 per company. Trustpilot shows all public reviews via pagination.

**What's auto-resolve?**
Type `pipedrive.com` or `amazon` in the companies field — the actor automatically finds the correct Trustpilot review page without you needing to look up the URL.

**Is sentiment analysis accurate?**
AFINN-165 captures overall sentiment direction well for English reviews. For multilingual deep analysis, export and use a specialized NLP tool.

**Can I filter only negative reviews?**
Yes. Set `starFilter: [1, 2]` to get only 1-star and 2-star reviews.

***

### Connect with Make, Zapier & n8n

This actor integrates with any automation platform via the Apify API.

#### Make (Integromat)

1. Add an **Apify module** in your Make scenario
2. Select **Run Actor** and choose this actor
3. Configure the input (paste your JSON)
4. Add a **Get Dataset Items** module to retrieve results
5. Connect to Google Sheets, HubSpot, Slack, or any other app

#### Zapier

1. Use the **Apify integration** on Zapier
2. Set trigger: **Actor Run Finished**
3. Action: **Get Dataset Items**
4. Send results to your CRM, email tool, or spreadsheet

#### n8n

1. Add an **HTTP Request** node to call the Apify API
2. POST to `https://api.apify.com/v2/acts/dltik~trustpilot-scraper/runs`
3. Wait for completion, then fetch dataset items
4. Route results to any n8n node

#### Webhooks

Set up a webhook to get notified when a run finishes:

```python
run = client.actor("dltik/trustpilot-scraper").call(
    run_input={...},
    webhooks=[{
        "eventTypes": ["ACTOR.RUN.SUCCEEDED"],
        "requestUrl": "https://your-webhook-url.com"
    }]
)
```

***

### Other scrapers by dltik

| Actor | What it does | Price |
|-------|-------------|-------|
| [Google Maps Email Extractor](https://apify.com/dltik/google-maps-email-extractor) | Extract emails, phones, WhatsApp from Google Maps businesses | $3/1K |
| [Facebook Ads Scraper](https://apify.com/dltik/facebook-ads-scraper) | Scrape Meta Ad Library — ad copy, creatives, CTA links | $1/1K |
| [TikTok Scraper](https://apify.com/dltik/tiktok-scraper) | Scrape profiles, videos, hashtags, search, trending | $1/1K |
| [TikTok Video Downloader](https://apify.com/dltik/tiktok-video-downloader) | Download TikTok videos without watermark | $5/1K |
| [Reddit Scraper](https://apify.com/dltik/reddit-scraper) | Scrape posts, comments, profiles with sentiment analysis | $2/1K |

# Actor input Schema

## `urls` (type: `array`):

Trustpilot company review page URLs (e.g. 'https://www.trustpilot.com/review/example.com')

## `companies` (type: `array`):

Company names or domains to auto-resolve (e.g. 'pipedrive.com', 'amazon', 'nike.com'). No need to find the Trustpilot URL manually.

## `maxReviews` (type: `integer`):

Maximum number of reviews to extract per company. 20 reviews per page, paginated automatically.

## `sortBy` (type: `string`):

How to sort reviews.

## `starFilter` (type: `array`):

Only include reviews with these star ratings. Leave empty for all stars. e.g. \[1, 2] for negative reviews only.

## `languageFilter` (type: `string`):

Only include reviews in this language (ISO code: en, fr, de, es, etc.). Leave empty for all languages.

## `enableSentiment` (type: `boolean`):

Add AFINN-165 sentiment scoring to each review. Adds sentiment\_score and sentiment\_label fields.

## `includeCompanyInfo` (type: `boolean`):

Include company profile data (TrustScore, star distribution, categories, response rate) as the first result.

## Actor input object example

```json
{
  "companies": [
    "pipedrive.com"
  ],
  "maxReviews": 100,
  "sortBy": "recency",
  "enableSentiment": false,
  "includeCompanyInfo": true
}
```

# Actor output Schema

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

Dataset containing Trustpilot reviews and company profiles.

# 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 = {
    "companies": [
        "pipedrive.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dltik/trustpilot-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 = { "companies": ["pipedrive.com"] }

# Run the Actor and wait for it to finish
run = client.actor("dltik/trustpilot-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 '{
  "companies": [
    "pipedrive.com"
  ]
}' |
apify call dltik/trustpilot-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Trustpilot Scraper — Reviews, Ratings & Sentiment Analysis",
        "description": "Scrape Trustpilot reviews and company profiles. Auto-resolve domains. Built-in sentiment analysis. 35+ fields: rating, text, author, verified, company reply. Filter by stars, language. HTTP-only, 256MB. $0.50/1K reviews.",
        "version": "1.0",
        "x-build-id": "aIq2usdBn6Bqnr9kc"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dltik~trustpilot-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dltik-trustpilot-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/dltik~trustpilot-scraper/runs": {
            "post": {
                "operationId": "runs-sync-dltik-trustpilot-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/dltik~trustpilot-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-dltik-trustpilot-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": {
                    "urls": {
                        "title": "Trustpilot URLs",
                        "type": "array",
                        "description": "Trustpilot company review page URLs (e.g. 'https://www.trustpilot.com/review/example.com')",
                        "items": {
                            "type": "string"
                        }
                    },
                    "companies": {
                        "title": "Company names or domains",
                        "type": "array",
                        "description": "Company names or domains to auto-resolve (e.g. 'pipedrive.com', 'amazon', 'nike.com'). No need to find the Trustpilot URL manually.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxReviews": {
                        "title": "Max reviews per company",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of reviews to extract per company. 20 reviews per page, paginated automatically.",
                        "default": 100
                    },
                    "sortBy": {
                        "title": "Sort reviews by",
                        "enum": [
                            "recency",
                            "rating_high",
                            "rating_low"
                        ],
                        "type": "string",
                        "description": "How to sort reviews.",
                        "default": "recency"
                    },
                    "starFilter": {
                        "title": "Star filter",
                        "type": "array",
                        "description": "Only include reviews with these star ratings. Leave empty for all stars. e.g. [1, 2] for negative reviews only.",
                        "items": {
                            "type": "integer"
                        }
                    },
                    "languageFilter": {
                        "title": "Language filter",
                        "type": "string",
                        "description": "Only include reviews in this language (ISO code: en, fr, de, es, etc.). Leave empty for all languages."
                    },
                    "enableSentiment": {
                        "title": "Sentiment analysis",
                        "type": "boolean",
                        "description": "Add AFINN-165 sentiment scoring to each review. Adds sentiment_score and sentiment_label fields.",
                        "default": false
                    },
                    "includeCompanyInfo": {
                        "title": "Include company info",
                        "type": "boolean",
                        "description": "Include company profile data (TrustScore, star distribution, categories, response rate) as the first result.",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
