# WooCommerce Product Scraper | $3/1K | Any Store via API (`apivault_labs/woocommerce-product-scraper`) Actor

Scrape any WooCommerce store's catalog via the public Store API. Get title, price, variants, SKUs, categories, images, stock. No login, no API key.

- **URL**: https://apify.com/apivault\_labs/woocommerce-product-scraper.md
- **Developed by:** [Apivault Labs](https://apify.com/apivault_labs) (community)
- **Categories:** 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.00 / 1,000 product 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

## 🛒 WooCommerce Product Scraper | $3/1K | 30% of E-commerce, One Endpoint

Scrape **any WooCommerce-powered store** in real-time. WooCommerce powers ~30% of all online stores worldwide — millions of shops. This actor uses WooCommerce's **public Store API** (enabled by default) to pull entire catalogs or single products. Works on virtually every modern WordPress + WooCommerce store.

### ✨ Why this is special

- ⚡ **Direct JSON API** — 10-100x faster than browser scraping
- 🎯 **Exact structured data** — no AI guessing, no galluctinations
- 📦 **Full catalog pagination** — up to 10 000 products per run
- 🧬 **Variations, attributes, categories** — full product taxonomy
- 🖼️ All image URLs
- 💰 Regular price + sale price + on-sale flag
- 📊 Stock status, rating, review count
- 🔒 Zero antibot — Store API is public by design

### Works on

Any store built on WooCommerce — ~30% of all online stores:
- WordPress + WooCommerce sites
- Multiple themes (Astra, OceanWP, Kadence, Storefront)
- WooCommerce Marketplace extensions
- Your competitors' WordPress shops

**Not sure if a site is WooCommerce?** Try appending `/wp-json/wc/store/v1/products?per_page=1` to its URL. If you get JSON, it works.

### Input

#### Scrape entire catalog

```json
{
  "storeUrls": ["https://woocommerce.com"],
  "maxProducts": 500
}
````

#### Scrape specific category only

```json
{
  "storeUrls": ["https://woocommerce.com"],
  "category": "customer-service-2",
  "maxProducts": 100
}
```

#### Scrape specific products

```json
{
  "storeUrls": [
    "https://woocommerce.com/products/chat-buttons/"
  ]
}
```

#### Competitive analysis — multiple stores

```json
{
  "storeUrls": [
    "https://store1.com",
    "https://store2.com",
    "https://store3.com"
  ],
  "maxProducts": 100,
  "maxConcurrency": 3,
  "onlyInStock": true
}
```

#### Input Parameters

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `storeUrls` | string\[] | ✅ | Store domains, product URLs, or bare domains |
| `maxProducts` | int | ❌ | Limit per store (0 = unlimited). Default: 250 |
| `perPage` | int | ❌ | Products per API page. WC max: 100 (default: 100) |
| `flattenVariants` | bool | ❌ | One row per variant ID or per product |
| `onlyInStock` | bool | ❌ | Skip out-of-stock products |
| `category` | string | ❌ | Filter by category slug (e.g. `hoodies`) |
| `extractTitle` / `extractPrice` / `extractRegularPrice` / `extractSalePrice` / `extractSku` / `extractDescription` / `extractShortDescription` / `extractImages` / `extractCategories` / `extractTags` / `extractAttributes` / `extractStock` / `extractRating` / `extractVariations` | bool | ❌ | Toggle fields (all default true) |
| `maxConcurrency` | int | ❌ | Parallel store fetches (default: 3) |
| `timeout` | int | ❌ | HTTP timeout per request (default: 30) |

### Output

```json
{
  "success": true,
  "productId": 18734006539864,
  "productUrl": "https://woocommerce.com/products/chat-buttons/",
  "slug": "chat-buttons",
  "title": "Chat Buttons",
  "shortDescription": "Let customers reach you instantly on WhatsApp, Instagram, Facebook...",
  "description": "Allow Customers to Chat on Their Preferred Platform. Modern shoppers expect...",
  "price": "29.00",
  "regularPrice": "29.00",
  "salePrice": "",
  "currency": "USD",
  "onSale": false,
  "sku": "",
  "images": "https://woocommerce.com/wp-content/uploads/2026/04/chat-button.png",
  "mainImage": "https://woocommerce.com/wp-content/uploads/2026/04/chat-button.png",
  "categories": "WooCommerce extensions, Customer service, Live chat",
  "tags": "",
  "attributes": "",
  "stockStatus": "in-stock",
  "inStock": true,
  "lowStock": null,
  "averageRating": 0,
  "reviewCount": 0,
  "type": "simple",
  "variationsCount": 0,
  "variationIds": ""
}
```

### Use Cases

#### 🏪 Dropshipping / Resellers

- Pull entire WooCommerce-store catalogs in seconds
- Monitor competitors' pricing changes
- Find discounted items to resell

#### 📊 Competitive Intelligence

- Diff your catalog vs. competitor WooCommerce stores
- Spot new product launches in your niche
- Analyze pricing strategies

#### 🏷️ Price Monitoring & MAP Enforcement

- Brands: monitor retailers hosting your products
- Detect price violations automatically

#### 🛠️ Catalog Migration & Backup

- Export any WooCommerce store to CSV/JSON
- Feed your custom store or affiliate site

#### 🧬 Product Research

- Analyze which categories dominate in a niche
- Find product attribute trends (materials, colors, sizes)

### Pricing

- **$0.003 per product** ($3 per 1,000 products)
- No monthly fees, no subscriptions
- Pay only for successfully fetched products
- **10,000 products = $30** (~60 seconds runtime)

### How it works

WooCommerce 4.7+ stores expose `/wp-json/wc/store/v1/products` by default. This actor:

1. Normalizes your input (store domain, product URL, bare domain)
2. Paginates through the Store API with `?per_page=100&page=N`
3. Parses structured product JSON (prices in minor units are auto-formatted)
4. Optionally filters by category or stock status

**Speed**: ~1 second per 100 products. 10 000 products = about a minute.

**Reliability**: 100% — Store API is an official WooCommerce endpoint, not scraping. Some stores disable it via security plugins; if so, you get a 404 and the actor skips cleanly.

### Notes

- Stores that **disable** the Store API (rare, some security plugins do) will return 404
- Variation detail (price per variant) is not included in listing endpoint — only variation IDs. To get full variant data, use `/wp-json/wc/store/v1/products/<id>` after finding the product (future enhancement).
- Customer data is never exposed via `/wc/store/v1/` — this is product-only
- Prices are returned in minor units by WooCommerce and auto-formatted by this actor

### Pro tips

- **Daily monitoring**: Apify Scheduler → diff `updatedAt` for change tracking
- **Niche-wide**: dump all WooCommerce competitors into one dataset
- **Combine with Shopify Scraper**: most DTC brands are on one or the other
- **Start small**: `maxProducts: 50` to validate a store, then scale up

# Actor input Schema

## `storeUrls` (type: `array`):

Accepts:
• Store domain — https://woocommerce.com (pulls entire catalog)
• Product URL — https://store.com/product/awesome-shirt/
• Bare domain — store.com
Mix them freely.

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

Limit per store (0 = unlimited). Default: 250.

## `perPage` (type: `integer`):

How many products per API page. WooCommerce max: 100.

## `flattenVariants` (type: `boolean`):

If true, outputs one row per variant (size/color). If false, one row per product.

## `onlyInStock` (type: `boolean`):

Skip products that are out of stock.

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

Optional: only fetch products from this category slug (e.g. 'hoodies'). Leave empty for all products.

## `extractTitle` (type: `boolean`):

Extract product name

## `extractPrice` (type: `boolean`):

Extract current price

## `extractRegularPrice` (type: `boolean`):

Extract regular (non-sale) price

## `extractSalePrice` (type: `boolean`):

Extract sale price

## `extractSku` (type: `boolean`):

Extract SKU codes

## `extractDescription` (type: `boolean`):

Extract product description (HTML stripped)

## `extractShortDescription` (type: `boolean`):

Extract short description

## `extractImages` (type: `boolean`):

Extract all image URLs

## `extractCategories` (type: `boolean`):

Extract category list

## `extractTags` (type: `boolean`):

Extract tags

## `extractAttributes` (type: `boolean`):

Extract product attributes (brand, material, etc.)

## `extractStock` (type: `boolean`):

Extract stock availability status

## `extractRating` (type: `boolean`):

Extract average rating and review count

## `extractVariations` (type: `boolean`):

Extract product variations (when not flattening)

## `maxConcurrency` (type: `integer`):

Parallel store fetches (default: 3)

## `timeout` (type: `integer`):

HTTP timeout per API page

## Actor input object example

```json
{
  "storeUrls": [
    "https://woocommerce.com"
  ],
  "maxProducts": 250,
  "perPage": 100,
  "flattenVariants": false,
  "onlyInStock": false,
  "category": "",
  "extractTitle": true,
  "extractPrice": true,
  "extractRegularPrice": true,
  "extractSalePrice": true,
  "extractSku": true,
  "extractDescription": true,
  "extractShortDescription": true,
  "extractImages": true,
  "extractCategories": true,
  "extractTags": true,
  "extractAttributes": true,
  "extractStock": true,
  "extractRating": true,
  "extractVariations": true,
  "maxConcurrency": 3,
  "timeout": 30
}
```

# 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 = {
    "storeUrls": [
        "https://woocommerce.com"
    ]
};

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

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "WooCommerce Product Scraper | $3/1K | Any Store via API",
        "description": "Scrape any WooCommerce store's catalog via the public Store API. Get title, price, variants, SKUs, categories, images, stock. No login, no API key.",
        "version": "1.0",
        "x-build-id": "sN4msHuG8rZDKqs1j"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/apivault_labs~woocommerce-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-apivault_labs-woocommerce-product-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/apivault_labs~woocommerce-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-apivault_labs-woocommerce-product-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/apivault_labs~woocommerce-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-apivault_labs-woocommerce-product-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": [
                    "storeUrls"
                ],
                "properties": {
                    "storeUrls": {
                        "title": "WooCommerce Store or Product URLs",
                        "type": "array",
                        "description": "Accepts:\n• Store domain — https://woocommerce.com (pulls entire catalog)\n• Product URL — https://store.com/product/awesome-shirt/\n• Bare domain — store.com\nMix them freely.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxProducts": {
                        "title": "Max products per store",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Limit per store (0 = unlimited). Default: 250.",
                        "default": 250
                    },
                    "perPage": {
                        "title": "Products per page",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many products per API page. WooCommerce max: 100.",
                        "default": 100
                    },
                    "flattenVariants": {
                        "title": "One row per variant",
                        "type": "boolean",
                        "description": "If true, outputs one row per variant (size/color). If false, one row per product.",
                        "default": false
                    },
                    "onlyInStock": {
                        "title": "Only in-stock products",
                        "type": "boolean",
                        "description": "Skip products that are out of stock.",
                        "default": false
                    },
                    "category": {
                        "title": "Filter by category slug",
                        "type": "string",
                        "description": "Optional: only fetch products from this category slug (e.g. 'hoodies'). Leave empty for all products.",
                        "default": ""
                    },
                    "extractTitle": {
                        "title": "Product Title",
                        "type": "boolean",
                        "description": "Extract product name",
                        "default": true
                    },
                    "extractPrice": {
                        "title": "Price",
                        "type": "boolean",
                        "description": "Extract current price",
                        "default": true
                    },
                    "extractRegularPrice": {
                        "title": "Regular Price",
                        "type": "boolean",
                        "description": "Extract regular (non-sale) price",
                        "default": true
                    },
                    "extractSalePrice": {
                        "title": "Sale Price",
                        "type": "boolean",
                        "description": "Extract sale price",
                        "default": true
                    },
                    "extractSku": {
                        "title": "SKU",
                        "type": "boolean",
                        "description": "Extract SKU codes",
                        "default": true
                    },
                    "extractDescription": {
                        "title": "Description",
                        "type": "boolean",
                        "description": "Extract product description (HTML stripped)",
                        "default": true
                    },
                    "extractShortDescription": {
                        "title": "Short Description",
                        "type": "boolean",
                        "description": "Extract short description",
                        "default": true
                    },
                    "extractImages": {
                        "title": "Images",
                        "type": "boolean",
                        "description": "Extract all image URLs",
                        "default": true
                    },
                    "extractCategories": {
                        "title": "Categories",
                        "type": "boolean",
                        "description": "Extract category list",
                        "default": true
                    },
                    "extractTags": {
                        "title": "Tags",
                        "type": "boolean",
                        "description": "Extract tags",
                        "default": true
                    },
                    "extractAttributes": {
                        "title": "Attributes",
                        "type": "boolean",
                        "description": "Extract product attributes (brand, material, etc.)",
                        "default": true
                    },
                    "extractStock": {
                        "title": "Stock / Availability",
                        "type": "boolean",
                        "description": "Extract stock availability status",
                        "default": true
                    },
                    "extractRating": {
                        "title": "Rating",
                        "type": "boolean",
                        "description": "Extract average rating and review count",
                        "default": true
                    },
                    "extractVariations": {
                        "title": "Variations",
                        "type": "boolean",
                        "description": "Extract product variations (when not flattening)",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Parallel store fetches (default: 3)",
                        "default": 3
                    },
                    "timeout": {
                        "title": "Timeout per request (seconds)",
                        "minimum": 10,
                        "maximum": 120,
                        "type": "integer",
                        "description": "HTTP timeout per API page",
                        "default": 30
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
