# WooCommerce Website Scraper (`scrapelabsapi/woocommerce-scraper`) Actor

- **URL**: https://apify.com/scrapelabsapi/woocommerce-scraper.md
- **Developed by:** [ScrapeLabs](https://apify.com/scrapelabsapi) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## WooCommerce Store Scraper

A robust Apify Actor for scraping product data from WooCommerce stores using the WooCommerce REST API.

### Why Choose Us?

- **Comprehensive Data Extraction**: Scrapes complete product information including prices, images, categories, reviews, and more
- **Smart Proxy Management**: Automatic proxy fallback system ensures successful scraping even when stores block requests
- **Bulk Processing**: Process multiple stores in a single run
- **Incremental Saving**: Data is saved as it's scraped, so you don't lose progress if the actor stops
- **Production Ready**: Built with error handling, retry logic, and detailed logging

### Key Features

- ✅ Scrape products from multiple WooCommerce stores
- ✅ Automatic proxy fallback (no proxy → datacenter → residential)
- ✅ Filter by featured or on-sale products
- ✅ Detailed product information including prices, images, categories, reviews
- ✅ Incremental data saving to prevent data loss
- ✅ Comprehensive error handling and retry logic
- ✅ Real-time progress logging

### Input

#### JSON Example

```json
{
  "startUrls": [
    { "url": "https://woocommerce.com" }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "limit": 100,
  "featured": false,
  "sale": false,
  "devNoStrip": false
}
````

#### Input Fields

- **startUrls** (required): Array of store URLs to scrape. Each item should be an object with a `url` property.
- **proxyConfiguration** (optional): Proxy settings. By default, no proxy is used. The actor will automatically fallback to datacenter or residential proxies if needed.
- **limit** (optional): Maximum number of products to scrape per store (default: 100, max: 1000).
- **featured** (optional): If `true`, only scrape featured products (default: false).
- **sale** (optional): If `true`, only scrape products that are on sale (default: false).
- **devNoStrip** (optional): If `true`, product names and slugs will not be stripped of whitespace (default: false).

### Output

#### JSON Example

```json
{
  "url": "https://woocommerce.com/products/example/",
  "id": 12345,
  "name": "Example Product",
  "slug": "example-product",
  "type": "simple",
  "sku": "EX-001",
  "on_sale": false,
  "prices": {
    "price": "29.99",
    "regular_price": "29.99",
    "sale_price": "0",
    "currency_code": "USD",
    "currency_symbol": "$",
    "currency_prefix": "$"
  },
  "average_rating": "4.5",
  "review_count": 10,
  "images": [...],
  "categories": [...],
  "tags": [...],
  "is_in_stock": true,
  "store": "https://woocommerce.com"
}
```

#### Output Fields

- **url**: Product page URL
- **id**: Product ID
- **name**: Product name
- **slug**: Product slug
- **type**: Product type (simple, variable, etc.)
- **sku**: Product SKU
- **on\_sale**: Whether product is on sale
- **prices**: Price information including currency details
- **average\_rating**: Average customer rating
- **review\_count**: Number of reviews
- **images**: Array of product images
- **categories**: Product categories
- **tags**: Product tags
- **is\_in\_stock**: Stock availability
- **store**: Source store URL

### 🚀 How to Use the Actor (via Apify Console)

1. Log in at https://console.apify.com and go to **Actors**.
2. Find your actor (woocommerce-scraper) and click it.
3. Configure inputs:
   - Add store URLs in the **startUrls** field
   - Optionally configure proxy settings
   - Set product limit and filters if needed
4. Click **Start** to run the actor.
5. Monitor logs in real time to see progress.
6. Access results in the **OUTPUT** tab once scraping completes.
7. Export results to JSON or CSV.

### Best Use Cases

- **E-commerce Research**: Analyze product catalogs from WooCommerce stores
- **Price Monitoring**: Track product prices across multiple stores
- **Product Comparison**: Compare products from different WooCommerce stores
- **Market Analysis**: Gather product data for market research
- **Inventory Management**: Export product data for inventory systems

### Frequently Asked Questions

**Q: Does this work with all WooCommerce stores?**\
A: Yes, as long as the store has the WooCommerce REST API enabled (which is standard for WooCommerce stores).

**Q: What happens if a store blocks my requests?**\
A: The actor automatically falls back through proxy options: first datacenter proxy, then residential proxy with retries.

**Q: Can I scrape private or password-protected stores?**\
A: No, this actor only works with publicly accessible WooCommerce REST API endpoints.

**Q: How many products can I scrape?**\
A: The limit is configurable up to 1000 products per store. For larger catalogs, you may need to run multiple times with different filters.

**Q: Will the actor save data if it crashes?**\
A: Yes, data is saved incrementally as it's scraped, so you won't lose progress if the actor stops.

### Support and Feedback

For issues, questions, or feedback, please contact support through the Apify platform.

### Cautions

- Data is collected only from **publicly available sources**.
- No data is taken from private accounts or password-protected content.
- The end user is responsible for ensuring legal compliance (spam laws, privacy, data protection, etc.).
- Respect the target website's robots.txt and terms of service.

# Actor input Schema

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

💡 Where do you want to Shop? (Also accepts 'url' as array of store URLs)

## `url` (type: `array`):

Alternative to startUrls: array of store URLs to scrape.

## `limit` (type: `integer`):

Number of results (per-query)

## `resource` (type: `string`):

Select resource type to scrape

## `include_variations` (type: `boolean`):

Include product variations in results

## `format` (type: `string`):

💡 Output format for Descriptions. (default: Markdown)

## `sort` (type: `string`):

Sort results by attribute

## `order` (type: `string`):

Order sort direction

## `search` (type: `string`):

💡 Limit results to those matching a string.

## `sku` (type: `string`):

💡 Limit result set to products with specific SKU(s). Use commas to separate.

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

💡 Filter by product ratings. Enter comma-separated rating values (e.g., 1,2,3,4,5)

## `min_price` (type: `integer`):

Limit result set to products based on a minimum price.

## `max_price` (type: `integer`):

Limit result set to products based on a maximum price.

## `tax_class` (type: `string`):

Limit result set to products with a specific tax class.

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

Product Category ID(s) separated by comma

## `tag` (type: `string`):

Product Tag ID(s) separated by comma

## `product_type` (type: `string`):

Products assigned a specific type

## `status` (type: `string`):

Filter by product status

## `stock` (type: `string`):

Filter by stock status

## `featured` (type: `boolean`):

Featured products

## `sale` (type: `boolean`):

Products on sale

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

Choose which proxies to use. By default, no proxy is used.

## `dev_proxy_config` (type: `string`):

💡 Supported protocol: HTTP(S), SOCKS5
{http|socks5}://{user:pass}@{hostname|ip-address}:port
Example: socks5://example.com:9000

## `dev_custom_headers` (type: `string`):

💡 Additional HTTP Headers as JSON array. Example: \[{"name": "Authorization", "value": "Bearer token"}]

## `dev_custom_cookies` (type: `string`):

💡 Additional HTTP Cookies as JSON array. Example: \[{"name": "session", "value": "abc123"}]

## `dev_transform_fields` (type: `string`):

💡 Transform the resulting output. Enter comma-separated field paths.
For nested object use DOT. For example: address.streetAddress
For nested array use NUMBER (index of array element starting from index=0). For example: images.0.url

## `dev_dataset_name` (type: `string`):

💡 Save results into custom named Dataset, use mask to customize dataset name
{ACTOR} = actor name
{DATE} = date (YYYYMMDD)
{TIME} = time (HHMMSS)
This masks can be used to autogenerate Dataset Name.
example: data-{DATE}
Depending on today date the dataset name will be: data-20230603
default: data-{ACTOR}-{DATE}-{TIME}

## `dev_dataset_clear` (type: `boolean`):

Clear Dataset before insert/update.

## `dev_no_strip` (type: `boolean`):

💡 Keep/Save empty values (NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)

## `dev_fileupload` (type: `string`):

💡 Upload your file and copy & paste the URL somewhere.

## Actor input object example

```json
{
  "startUrls": [
    "https://woocommerce.com"
  ],
  "limit": 10,
  "resource": "products",
  "include_variations": false,
  "format": "md",
  "sort": "date",
  "order": "",
  "featured": false,
  "sale": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "dev_dataset_clear": false,
  "dev_no_strip": false
}
```

# 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": [
        "https://woocommerce.com"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapelabsapi/woocommerce-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": ["https://woocommerce.com"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapelabsapi/woocommerce-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": [
    "https://woocommerce.com"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call scrapelabsapi/woocommerce-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "WooCommerce Website Scraper",
        "version": "0.1",
        "x-build-id": "2yoxnzZjrzb1pq0ha"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapelabsapi~woocommerce-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapelabsapi-woocommerce-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/scrapelabsapi~woocommerce-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapelabsapi-woocommerce-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/scrapelabsapi~woocommerce-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapelabsapi-woocommerce-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",
                "required": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "❓ URL",
                        "type": "array",
                        "description": "💡 Where do you want to Shop? (Also accepts 'url' as array of store URLs)",
                        "items": {
                            "type": "string"
                        }
                    },
                    "url": {
                        "title": "URL (alternative)",
                        "type": "array",
                        "description": "Alternative to startUrls: array of store URLs to scrape.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "limit": {
                        "title": "♾️ Limit",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Number of results (per-query)",
                        "default": 10
                    },
                    "resource": {
                        "title": "📁 Resource",
                        "enum": [
                            "products",
                            "categories",
                            "brands",
                            "tags",
                            "attributes",
                            "reviews",
                            "pages",
                            "posts",
                            "comments",
                            "post-categories",
                            "post-tags",
                            "users"
                        ],
                        "type": "string",
                        "description": "Select resource type to scrape",
                        "default": "products"
                    },
                    "include_variations": {
                        "title": "Include Variations",
                        "type": "boolean",
                        "description": "Include product variations in results",
                        "default": false
                    },
                    "format": {
                        "title": "Output Format",
                        "enum": [
                            "md",
                            "text",
                            "html"
                        ],
                        "type": "string",
                        "description": "💡 Output format for Descriptions. (default: Markdown)",
                        "default": "md"
                    },
                    "sort": {
                        "title": "Sorting",
                        "enum": [
                            "",
                            "date",
                            "modified",
                            "id",
                            "include",
                            "title",
                            "slug",
                            "price",
                            "popularity",
                            "rating",
                            "menu_order",
                            "comment_count"
                        ],
                        "type": "string",
                        "description": "Sort results by attribute",
                        "default": "date"
                    },
                    "order": {
                        "title": "Order",
                        "enum": [
                            "",
                            "asc",
                            "desc"
                        ],
                        "type": "string",
                        "description": "Order sort direction",
                        "default": ""
                    },
                    "search": {
                        "title": "Search",
                        "type": "string",
                        "description": "💡 Limit results to those matching a string."
                    },
                    "sku": {
                        "title": "SKU",
                        "type": "string",
                        "description": "💡 Limit result set to products with specific SKU(s). Use commas to separate."
                    },
                    "rating": {
                        "title": "Product Ratings",
                        "type": "string",
                        "description": "💡 Filter by product ratings. Enter comma-separated rating values (e.g., 1,2,3,4,5)"
                    },
                    "min_price": {
                        "title": "Price Range - Min",
                        "type": "integer",
                        "description": "Limit result set to products based on a minimum price."
                    },
                    "max_price": {
                        "title": "Price Range - Max",
                        "type": "integer",
                        "description": "Limit result set to products based on a maximum price."
                    },
                    "tax_class": {
                        "title": "Tax Class",
                        "enum": [
                            "",
                            "standard",
                            "reduced-rate",
                            "zero-rate"
                        ],
                        "type": "string",
                        "description": "Limit result set to products with a specific tax class."
                    },
                    "category": {
                        "title": "Category",
                        "type": "string",
                        "description": "Product Category ID(s) separated by comma"
                    },
                    "tag": {
                        "title": "Tag",
                        "type": "string",
                        "description": "Product Tag ID(s) separated by comma"
                    },
                    "product_type": {
                        "title": "Product Type",
                        "enum": [
                            "",
                            "simple",
                            "grouped",
                            "external",
                            "variable",
                            "wbs_bundle",
                            "variation"
                        ],
                        "type": "string",
                        "description": "Products assigned a specific type"
                    },
                    "status": {
                        "title": "Product Status",
                        "enum": [
                            "",
                            "future",
                            "trash",
                            "draft",
                            "pending",
                            "private",
                            "publish"
                        ],
                        "type": "string",
                        "description": "Filter by product status"
                    },
                    "stock": {
                        "title": "Stock Status",
                        "enum": [
                            "",
                            "instock",
                            "outofstock",
                            "onbackorder"
                        ],
                        "type": "string",
                        "description": "Filter by stock status"
                    },
                    "featured": {
                        "title": "Featured",
                        "type": "boolean",
                        "description": "Featured products",
                        "default": false
                    },
                    "sale": {
                        "title": "On Sale",
                        "type": "boolean",
                        "description": "Products on sale",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Choose which proxies to use. By default, no proxy is used."
                    },
                    "dev_proxy_config": {
                        "title": "🌐 PROXY NETWORKING",
                        "type": "string",
                        "description": "💡 Supported protocol: HTTP(S), SOCKS5\n{http|socks5}://{user:pass}@{hostname|ip-address}:port\nExample: socks5://example.com:9000"
                    },
                    "dev_custom_headers": {
                        "title": "📜 HTTP HEADERS",
                        "type": "string",
                        "description": "💡 Additional HTTP Headers as JSON array. Example: [{\"name\": \"Authorization\", \"value\": \"Bearer token\"}]"
                    },
                    "dev_custom_cookies": {
                        "title": "🍰 HTTP COOKIES",
                        "type": "string",
                        "description": "💡 Additional HTTP Cookies as JSON array. Example: [{\"name\": \"session\", \"value\": \"abc123\"}]"
                    },
                    "dev_transform_fields": {
                        "title": "♻️ CUSTOM FIELD",
                        "type": "string",
                        "description": "💡 Transform the resulting output. Enter comma-separated field paths.\nFor nested object use DOT. For example: address.streetAddress\nFor nested array use NUMBER (index of array element starting from index=0). For example: images.0.url"
                    },
                    "dev_dataset_name": {
                        "title": "📁 CUSTOM STORAGE",
                        "type": "string",
                        "description": "💡 Save results into custom named Dataset, use mask to customize dataset name\n{ACTOR} = actor name\n{DATE} = date (YYYYMMDD)\n{TIME} = time (HHMMSS)\nThis masks can be used to autogenerate Dataset Name.\nexample: data-{DATE}\nDepending on today date the dataset name will be: data-20230603\ndefault: data-{ACTOR}-{DATE}-{TIME}"
                    },
                    "dev_dataset_clear": {
                        "title": "Clear Storage",
                        "type": "boolean",
                        "description": "Clear Dataset before insert/update.",
                        "default": false
                    },
                    "dev_no_strip": {
                        "title": "Disable data cleansing",
                        "type": "boolean",
                        "description": "💡 Keep/Save empty values (NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)",
                        "default": false
                    },
                    "dev_fileupload": {
                        "title": "📁 FILE UPLOADER",
                        "type": "string",
                        "description": "💡 Upload your file and copy & paste the URL somewhere."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
