# SmartCustomer Reviews Scraper (`automation-lab/smartcustomer-reviews-scraper`) Actor

Scrape SmartCustomer reviews, ratings, authors, dates, text, and reputation metrics from public profiles and categories.

- **URL**: https://apify.com/automation-lab/smartcustomer-reviews-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Business, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## SmartCustomer Reviews Scraper

Extract public customer reviews and reputation signals from SmartCustomer business pages and category pages.

SmartCustomer is the current live surface for many legacy Sitejabber review URLs. This actor helps reputation teams, agencies, diligence researchers, marketplaces, and growth operators collect structured review records from public SmartCustomer pages without building their own parser.

### What does SmartCustomer Reviews Scraper do?

SmartCustomer Reviews Scraper turns public SmartCustomer pages into clean dataset rows.

It can:

- Scrape SmartCustomer business review pages such as `https://www.smartcustomer.com/reviews/amazon.com`
- Accept legacy Sitejabber review URLs that redirect to SmartCustomer
- Convert domains such as `amazon.com` into SmartCustomer review URLs
- Discover business review pages from SmartCustomer category pages
- Follow review pagination up to your configured page limit
- Extract review titles, full review text, ratings, dates, authors, and direct review URLs
- Add business-level fields such as aggregate rating, review count, recommendation rate, and category path

### Who is it for?

This actor is built for teams that need recurring review intelligence.

- 🧭 Reputation managers monitoring customer complaints and praise
- 🏢 Agencies tracking clients and competitors across review platforms
- 🛒 Marketplaces and ecommerce teams watching merchant trust signals
- 🔎 Due diligence researchers checking brand risk before partnerships
- 📊 Data teams building dashboards from public review records
- 🤖 Automation builders feeding alerts, CRMs, data warehouses, or LLM workflows

### Why scrape SmartCustomer reviews?

Customer review pages contain signals that are hard to track manually at scale.

You can use the data to:

- Detect new negative reviews
- Compare competitor reputation by rating and review volume
- Monitor issue themes in review text
- Track review recency and author details
- Build brand-risk and vendor-risk datasets
- Preserve evidence URLs for follow-up workflows

### What data can you extract?

| Field | Description |
| --- | --- |
| `businessName` | Name of the reviewed business |
| `businessDomain` | Business domain normalized from the profile |
| `businessUrl` | Business website URL from SmartCustomer |
| `smartCustomerUrl` | Canonical SmartCustomer profile URL |
| `categoryPath` | Breadcrumb category path |
| `ratingValue` | Aggregate business rating |
| `reviewCount` | Total public review count shown in structured data |
| `recommendationRate` | Percent of reviewers recommending the business, when shown |
| `positiveReviewsLast12Months` | Positive review percentage for the last 12 months, when shown |
| `reviewId` | Review anchor ID parsed from the review URL |
| `reviewUrl` | Direct URL to the review anchor |
| `reviewTitle` | Review headline |
| `reviewText` | Full review body text |
| `reviewRating` | Star rating for the individual review |
| `reviewDate` | Review publication date |
| `authorName` | Reviewer display name |
| `authorUrl` | SmartCustomer author profile URL |
| `sourcePage` | Exact page fetched by the actor |
| `pageNumber` | Pagination page number |
| `scrapedAt` | Extraction timestamp |

### How much does it cost to scrape SmartCustomer reviews?

The actor uses pay-per-event pricing.

- A small start event is charged once per run.
- A per-review event is charged for each saved review record.
- Volume tiers lower the per-review price for higher Apify subscription tiers.

Keep first tests small by using the default `maxReviews` and `maxPagesPerBusiness` values. Increase limits only after confirming that the selected pages contain the data you need.

### Input options

#### SmartCustomer review or category URLs

Use `startUrls` for exact pages.

Supported examples:

```json
[
  { "url": "https://www.smartcustomer.com/reviews/amazon.com" },
  { "url": "https://www.smartcustomer.com/categories/marketplace" },
  { "url": "https://www.sitejabber.com/reviews/amazon.com" }
]
````

#### Business domains

Use `businessDomains` when you already know the reviewed domains.

```json
["amazon.com", "dhgate.com", "swappa.com"]
```

The actor converts each domain to a SmartCustomer review page.

#### Maximum reviews

`maxReviews` controls the total number of saved review records across all businesses.

#### Maximum pages per business

`maxPagesPerBusiness` controls pagination depth. SmartCustomer review pages commonly contain about 20 reviews per page.

#### Follow category pages

When `followCategoryPages` is true, category URLs are expanded into the listed business review pages before scraping reviews.

#### Proxy configuration

SmartCustomer pages are usually reachable without proxy. Leave proxy disabled unless your environment is blocked.

### Example input

```json
{
  "startUrls": [
    { "url": "https://www.smartcustomer.com/reviews/amazon.com" }
  ],
  "maxReviews": 100,
  "maxPagesPerBusiness": 5,
  "followCategoryPages": true,
  "proxyConfiguration": { "useApifyProxy": false }
}
```

### Category page example

```json
{
  "startUrls": [
    { "url": "https://www.smartcustomer.com/categories/marketplace" }
  ],
  "maxReviews": 200,
  "maxPagesPerBusiness": 1,
  "followCategoryPages": true
}
```

This mode is useful when you want a sample across multiple businesses in a category.

### Domain list example

```json
{
  "businessDomains": ["amazon.com", "dhgate.com", "swappa.com"],
  "maxReviews": 150,
  "maxPagesPerBusiness": 3
}
```

This mode is useful for competitor watchlists.

### Example output

```json
{
  "businessName": "Amazon",
  "businessDomain": "amazon.com",
  "businessUrl": "http://amazon.com",
  "smartCustomerUrl": "https://www.smartcustomer.com/reviews/amazon.com",
  "categoryPath": "Shopping / Marketplace / Amazon",
  "ratingValue": 3,
  "reviewCount": 11106,
  "recommendationRate": 69,
  "positiveReviewsLast12Months": 0,
  "reviewId": "41505",
  "reviewUrl": "https://www.smartcustomer.com/reviews/amazon.com#41505",
  "reviewTitle": "Can You Trust Amazon?",
  "reviewText": "Review body text...",
  "reviewRating": 1,
  "reviewDate": "2026-4-26",
  "authorName": "Les D.",
  "authorUrl": "https://www.smartcustomer.com/users/lesvdavis",
  "sourcePage": "https://www.smartcustomer.com/reviews/amazon.com",
  "pageNumber": 1,
  "scrapedAt": "2026-07-09T00:00:00.000Z"
}
```

### How to run the scraper

1. Open the actor on Apify.
2. Paste SmartCustomer review/category URLs or enter business domains.
3. Set `maxReviews` and `maxPagesPerBusiness`.
4. Leave proxy disabled for normal public pages.
5. Start the run.
6. Export results from the dataset as JSON, CSV, Excel, XML, or RSS.

### Tips for better results

- Use direct `/reviews/...` URLs when you need complete coverage for known businesses.
- Use category URLs for discovery and sampling.
- Increase `maxPagesPerBusiness` to go deeper into older reviews.
- Keep `maxReviews` low for test runs.
- Store `reviewUrl` and `reviewId` for deduplication in downstream systems.
- Use `sourcePage` and `pageNumber` to audit where each record came from.

### Integrations

You can connect the dataset to:

- Google Sheets or Airtable for review monitoring
- BigQuery, Snowflake, or PostgreSQL for analytics
- Slack or email alerts for new low-rating reviews
- CRM enrichment workflows
- LLM summarization pipelines for complaint themes
- Apify webhooks for scheduled monitoring

### API usage with Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/smartcustomer-reviews-scraper').call({
  startUrls: [{ url: 'https://www.smartcustomer.com/reviews/amazon.com' }],
  maxReviews: 100,
  maxPagesPerBusiness: 5,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.length);
```

### API usage with Python

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/smartcustomer-reviews-scraper').call(run_input={
    'startUrls': [{'url': 'https://www.smartcustomer.com/reviews/amazon.com'}],
    'maxReviews': 100,
    'maxPagesPerBusiness': 5,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(len(items))
```

### API usage with cURL

```bash
curl "https://api.apify.com/v2/acts/automation-lab~smartcustomer-reviews-scraper/runs?token=$APIFY_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"startUrls":[{"url":"https://www.smartcustomer.com/reviews/amazon.com"}],"maxReviews":100,"maxPagesPerBusiness":5}'
```

### MCP usage

Use the Apify MCP server to call this actor from compatible AI tools.

MCP URL:

```text
https://mcp.apify.com/?tools=automation-lab/smartcustomer-reviews-scraper
```

Claude Code setup:

```bash
claude mcp add apify-smartcustomer "https://mcp.apify.com/?tools=automation-lab/smartcustomer-reviews-scraper"
```

Claude Desktop JSON configuration:

```json
{
  "mcpServers": {
    "apify-smartcustomer": {
      "url": "https://mcp.apify.com/?tools=automation-lab/smartcustomer-reviews-scraper"
    }
  }
}
```

Example prompts:

- "Scrape the latest 100 SmartCustomer reviews for amazon.com and summarize recurring complaints."
- "Collect reviews from this SmartCustomer category page and rank businesses by average rating."
- "Monitor these three SmartCustomer profiles and flag new one-star reviews."

### Data quality notes

The actor reads public HTML and JSON-LD embedded in SmartCustomer pages. If SmartCustomer changes page markup or structured data, some fields may become unavailable until the actor is updated.

Some businesses may have sparse or missing structured data. The actor skips pages without review JSON-LD and continues with the next URL.

### Limitations

- The actor extracts public SmartCustomer data only.
- It does not log in or bypass private content.
- Category pages are used for discovery, not as separate output records.
- SmartCustomer may change pagination or structured data at any time.
- Review language is preserved as published by the reviewer.

### Troubleshooting

#### Why did a run return fewer reviews than requested?

The selected pages may contain fewer available reviews than your `maxReviews`, or `maxPagesPerBusiness` may be too low. Increase the page limit for deeper pagination.

#### Why are category results not from every business in the category?

The global `maxReviews` limit may be reached before every discovered business is scraped. Increase `maxReviews` or run one business URL at a time.

#### Should I enable proxy?

Usually no. Enable Apify Proxy only if the logs show consistent network blocking from your environment.

### Legality

This actor extracts publicly available web pages. You are responsible for using the data lawfully, respecting applicable terms, privacy rules, and regulations, and avoiding collection or use of personal data in ways you are not authorized to perform.

### Related scrapers

Other Automation Labs actors that may help reputation and review workflows:

- [Trustpilot Scraper](https://apify.com/automation-lab/trustpilot-scraper)
- [Sitejabber Reviews Scraper](https://apify.com/automation-lab/sitejabber-reviews-scraper)
- [Google Maps Scraper](https://apify.com/automation-lab/google-maps-scraper)

### FAQ

#### Can I scrape old Sitejabber URLs?

Yes. Public Sitejabber review URLs that redirect to SmartCustomer are accepted and normalized.

#### Does the actor scrape reviewer profile pages?

No. It captures the reviewer profile URL from the review record but does not crawl profile pages.

#### Can I monitor reviews on a schedule?

Yes. Schedule the actor on Apify and deduplicate by `reviewId` or `reviewUrl` in your downstream system.

#### Does it output one row per review?

Yes. Each dataset item is one review enriched with business-level fields.

### Support

If a SmartCustomer page stops returning expected fields, provide the run URL and input used so the extractor can be checked against the current public page structure.

# Actor input Schema

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

Public SmartCustomer review pages, legacy Sitejabber review URLs that redirect to SmartCustomer, or category pages such as https://www.smartcustomer.com/categories/marketplace.

## `businessDomains` (type: `array`):

Optional domains to convert into SmartCustomer review pages, for example amazon.com or alibaba.com.

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

Maximum number of review records to save across all selected businesses.

## `maxPagesPerBusiness` (type: `integer`):

Each SmartCustomer review page normally contains about 20 reviews. Increase this to go deeper into pagination.

## `followCategoryPages` (type: `boolean`):

When enabled, category URLs are expanded into the business review pages listed on that category page.

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

Optional Apify proxy settings. SmartCustomer is usually reachable without a proxy; leave disabled unless your run is blocked.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.smartcustomer.com/reviews/amazon.com"
    },
    {
      "url": "https://www.smartcustomer.com/categories/marketplace"
    }
  ],
  "businessDomains": [
    "amazon.com"
  ],
  "maxReviews": 20,
  "maxPagesPerBusiness": 2,
  "followCategoryPages": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.smartcustomer.com/reviews/amazon.com"
        },
        {
            "url": "https://www.smartcustomer.com/categories/marketplace"
        }
    ],
    "businessDomains": [
        "amazon.com"
    ],
    "maxReviews": 20,
    "maxPagesPerBusiness": 2,
    "followCategoryPages": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/smartcustomer-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 = {
    "startUrls": [
        { "url": "https://www.smartcustomer.com/reviews/amazon.com" },
        { "url": "https://www.smartcustomer.com/categories/marketplace" },
    ],
    "businessDomains": ["amazon.com"],
    "maxReviews": 20,
    "maxPagesPerBusiness": 2,
    "followCategoryPages": True,
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/smartcustomer-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 '{
  "startUrls": [
    {
      "url": "https://www.smartcustomer.com/reviews/amazon.com"
    },
    {
      "url": "https://www.smartcustomer.com/categories/marketplace"
    }
  ],
  "businessDomains": [
    "amazon.com"
  ],
  "maxReviews": 20,
  "maxPagesPerBusiness": 2,
  "followCategoryPages": true
}' |
apify call automation-lab/smartcustomer-reviews-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SmartCustomer Reviews Scraper",
        "description": "Scrape SmartCustomer reviews, ratings, authors, dates, text, and reputation metrics from public profiles and categories.",
        "version": "0.1",
        "x-build-id": "Z3mkWcqmbY6u9m9op"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~smartcustomer-reviews-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-smartcustomer-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/automation-lab~smartcustomer-reviews-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-smartcustomer-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/automation-lab~smartcustomer-reviews-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-smartcustomer-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": {
                    "startUrls": {
                        "title": "SmartCustomer review or category URLs",
                        "type": "array",
                        "description": "Public SmartCustomer review pages, legacy Sitejabber review URLs that redirect to SmartCustomer, or category pages such as https://www.smartcustomer.com/categories/marketplace.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "businessDomains": {
                        "title": "Business domains",
                        "type": "array",
                        "description": "Optional domains to convert into SmartCustomer review pages, for example amazon.com or alibaba.com.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxReviews": {
                        "title": "Maximum reviews",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of review records to save across all selected businesses.",
                        "default": 100
                    },
                    "maxPagesPerBusiness": {
                        "title": "Maximum pages per business",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Each SmartCustomer review page normally contains about 20 reviews. Increase this to go deeper into pagination.",
                        "default": 10
                    },
                    "followCategoryPages": {
                        "title": "Follow category pages",
                        "type": "boolean",
                        "description": "When enabled, category URLs are expanded into the business review pages listed on that category page.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify proxy settings. SmartCustomer is usually reachable without a proxy; leave disabled unless your run is blocked.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
