# Ankorstore Products & Brands Scraper (`automation-lab/ankorstore-products-brands-scraper`) Actor

Extract public Ankorstore product and brand listings with prices, images, category breadcrumbs, product URLs, and supplier data.

- **URL**: https://apify.com/automation-lab/ankorstore-products-brands-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** 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.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

## Ankorstore Products & Brands Scraper

Scrape public Ankorstore marketplace product and brand listings for wholesale catalog research, brand discovery, sourcing, and competitor monitoring.

### What does Ankorstore Products & Brands Scraper do?

Ankorstore Products & Brands Scraper extracts public product cards from Ankorstore category, collection, brand, and product pages. It turns marketplace pages into a clean dataset with product names, brand names, prices, image URLs, category breadcrumbs, product URLs, brand URLs, and optional product-detail metadata such as descriptions, SKU values, tags, and country-of-origin labels.

### Who is it for?

- 🛍️ Retail buyers who want to discover wholesale brands in a niche.
- 📦 Ecommerce teams building supplier watchlists.
- 📊 Market researchers tracking catalog depth and wholesale pricing.
- 🧾 Agencies preparing prospect lists for independent brands.
- 🧠 Data teams enriching internal product intelligence systems.

### Why use this scraper?

Ankorstore pages contain structured product cards in server-rendered HTML. This actor collects that public information without browser overhead and exports rows that are ready for spreadsheets, BI tools, CRMs, and automated workflows.

### Data you can extract

| Field | Description |
| --- | --- |
| `productId` | Numeric product identifier parsed from the Ankorstore URL. |
| `productName` | Product title shown on Ankorstore. |
| `productUrl` | Full product page URL. |
| `brandId` | Numeric brand identifier parsed from the brand URL. |
| `brandName` | Supplier or brand name. |
| `brandUrl` | Full Ankorstore brand page URL. |
| `imageUrl` | Main public product image URL. |
| `price` | Public hidden wholesale price metadata when present. |
| `currency` | Price currency, usually EUR. |
| `category` | Current category title. |
| `categoryPath` | Breadcrumb path for the listing page. |
| `description` | Product description when detail enrichment is enabled. |
| `sku` | SKU from product structured data when available. |
| `tags` | Product tags/badges such as Made in Italy. |
| `madeIn` | Country-of-origin tags extracted from tags. |
| `sourceUrl` | Page where the row was discovered. |
| `scrapedAt` | ISO timestamp for the scrape. |

### How much does it cost to scrape Ankorstore products?

The actor uses pay-per-event pricing: a small run start fee plus a per-result fee for each saved listing. Exact tiered platform pricing is set during cloud validation. You can keep first runs cheap by using a single category URL, `maxItems` between 10 and 50, and `includeProductDetails` set to `false`.

### How to use it

1. Open a public Ankorstore category page such as a `/shop/...` URL.
2. Paste the URL into **Ankorstore start URLs**.
3. Set **Maximum listings**.
4. Keep **Fetch product detail pages** off for fast listing-only results.
5. Run the actor and download the dataset as JSON, CSV, Excel, or via API.

### Input options

- `startUrls` — category, collection, search, brand, or product URLs.
- `searchQueries` — optional phrases used to construct `/search?text=` URLs.
- `categoryPaths` — `/shop/` paths without the domain.
- `maxItems` — total row cap.
- `maxPagesPerUrl` — pagination cap per source URL.
- `includeProductDetails` — enriches each row with product-page structured data.
- `locale` — regional Ankorstore subdomain for generated URLs.

### Example input

```json
{
  "startUrls": [
    { "url": "https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735" }
  ],
  "maxItems": 25,
  "maxPagesPerUrl": 1,
  "includeProductDetails": false,
  "locale": "en"
}
````

### Example output

```json
{
  "productId": "2687991",
  "productName": "O'CCAFFE' - Intenso 1kg",
  "productUrl": "https://www.ankorstore.com/brand/occaffe-27940/occaffe-intenso-1kg-2687991",
  "brandId": "27940",
  "brandName": "O'CCAFFÈ",
  "price": 14.61,
  "currency": "EUR",
  "category": "Coffee & Chicory",
  "categoryPath": "Teas, Coffee & Hot Drinks > Coffee & Chicory"
}
```

### Tips for reliable runs

- Use category URLs for the most reliable server-rendered product lists.
- Increase `maxPagesPerUrl` when a category has many pages.
- Enable detail enrichment only when you need descriptions or SKUs.
- Keep `maxItems` small while testing a new category.
- Search URLs may expose fewer server-rendered results than category pages.

### Integrations

- 📈 Send datasets to Google Sheets for sourcing reports.
- 🧾 Export CSV files for buyer review.
- 🧠 Use JSON output in a product intelligence pipeline.
- 🔔 Schedule recurring runs to watch new products in a category.
- 🤝 Push brand URLs into a CRM for supplier outreach.

### API usage

#### Node.js

```js
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/ankorstore-products-brands-scraper').call({
  startUrls: [{ url: 'https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735' }],
  maxItems: 25
});
console.log(run.defaultDatasetId);
```

#### Python

```python
from apify_client import ApifyClient
client = ApifyClient('APIFY_TOKEN')
run = client.actor('automation-lab/ankorstore-products-brands-scraper').call(run_input={
    'startUrls': [{'url': 'https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735'}],
    'maxItems': 25,
})
print(run['defaultDatasetId'])
```

#### cURL

```bash
curl -X POST 'https://api.apify.com/v2/acts/automation-lab~ankorstore-products-brands-scraper/runs?token=APIFY_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"startUrls":[{"url":"https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735"}],"maxItems":25}'
```

### MCP usage

Use this actor from Claude Desktop or Claude Code through Apify MCP with:

`https://mcp.apify.com/?tools=automation-lab/ankorstore-products-brands-scraper`

Claude Code setup:

```bash
claude mcp add apify-ankorstore https://mcp.apify.com/?tools=automation-lab/ankorstore-products-brands-scraper
```

Claude Desktop JSON configuration:

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

Example prompts:

- "Scrape 50 Ankorstore coffee products and summarize the top brands."
- "Find public Ankorstore product URLs in this category and export a CSV."
- "Monitor this Ankorstore category weekly and flag new brand names."

### Output quality notes

The actor extracts public marketplace metadata. Some prices and details may be hidden or unavailable depending on Ankorstore's current public page content, locale, and category. Missing data is returned as `null` instead of guessed values.

### Limitations

Ankorstore is a marketplace for retailers and brands. Some data may require login or a retailer account and is not collected by this actor. The actor focuses on public pages and public structured data only.

### Legality

This actor is designed to collect publicly available data. You are responsible for using the output lawfully, respecting Ankorstore terms, privacy rules, and applicable data-protection laws. Do not use scraped data for spam or prohibited outreach.

### FAQ

#### Why did my search query return zero rows?

Some Ankorstore search pages are less complete in server-rendered HTML than category pages. Use a `/shop/...` category URL when possible.

#### Why are descriptions empty?

Enable `includeProductDetails` to open product pages and extract descriptions and SKUs. Listing-only mode is faster and cheaper.

#### Can I scrape private wholesale account data?

No. This actor collects public page data only and does not log in to Ankorstore.

### Related scrapers

- https://apify.com/automation-lab/google-maps-lead-finder
- https://apify.com/automation-lab/trustpilot-scraper
- https://apify.com/automation-lab/yellow-pages-scraper
- https://apify.com/automation-lab/product-hunt-scraper

### Changelog

- Initial version extracts Ankorstore public product cards, brands, category breadcrumbs, images, and prices.

### Support

If a public category URL stops returning rows, share the run URL and input so the actor can be adjusted to current Ankorstore markup.

### Category ideas to try

- Coffee & Chicory: use a public Ankorstore `/shop/` category URL.
- Candles & Home Fragrances: use a public Ankorstore `/shop/` category URL.
- Skincare: use a public Ankorstore `/shop/` category URL.
- Greeting Cards: use a public Ankorstore `/shop/` category URL.
- Jewellery: use a public Ankorstore `/shop/` category URL.
- Baby Toys: use a public Ankorstore `/shop/` category URL.
- Home Textiles: use a public Ankorstore `/shop/` category URL.
- Soft Drinks: use a public Ankorstore `/shop/` category URL.
- Tea: use a public Ankorstore `/shop/` category URL.
- Stationery: use a public Ankorstore `/shop/` category URL.
- Fashion Accessories: use a public Ankorstore `/shop/` category URL.
- Tableware: use a public Ankorstore `/shop/` category URL.
- Pet Accessories: use a public Ankorstore `/shop/` category URL.
- Chocolate: use a public Ankorstore `/shop/` category URL.
- Wellness: use a public Ankorstore `/shop/` category URL.

### Field reference checklist

- `productId` is included in every dataset row, with `null` or an empty array when unavailable.
- `productName` is included in every dataset row, with `null` or an empty array when unavailable.
- `productUrl` is included in every dataset row, with `null` or an empty array when unavailable.
- `brandId` is included in every dataset row, with `null` or an empty array when unavailable.
- `brandName` is included in every dataset row, with `null` or an empty array when unavailable.
- `brandUrl` is included in every dataset row, with `null` or an empty array when unavailable.
- `imageUrl` is included in every dataset row, with `null` or an empty array when unavailable.
- `price` is included in every dataset row, with `null` or an empty array when unavailable.
- `currency` is included in every dataset row, with `null` or an empty array when unavailable.
- `category` is included in every dataset row, with `null` or an empty array when unavailable.
- `categoryPath` is included in every dataset row, with `null` or an empty array when unavailable.
- `sourceUrl` is included in every dataset row, with `null` or an empty array when unavailable.
- `sourceType` is included in every dataset row, with `null` or an empty array when unavailable.
- `description` is included in every dataset row, with `null` or an empty array when unavailable.
- `sku` is included in every dataset row, with `null` or an empty array when unavailable.
- `tags` is included in every dataset row, with `null` or an empty array when unavailable.
- `madeIn` is included in every dataset row, with `null` or an empty array when unavailable.
- `scrapedAt` is included in every dataset row, with `null` or an empty array when unavailable.

# Actor input Schema

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

Public Ankorstore category, search, collection, brand, or product URLs. Category and search URLs usually return product cards without logging in.

## `searchQueries` (type: `array`):

Optional marketplace search phrases such as coffee, candles, skincare, or kids toys.

## `categoryPaths` (type: `array`):

Optional /shop/ paths without the domain, for example food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735.

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

Maximum number of product/brand rows to save across all inputs.

## `maxPagesPerUrl` (type: `integer`):

How many paginated listing pages to follow for each start URL.

## `includeProductDetails` (type: `boolean`):

Open each product page to enrich rows with description, SKU, and tags. Slower but useful for catalog research.

## `locale` (type: `string`):

Ankorstore regional site to use when generating URLs from search queries or category paths.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735"
    }
  ],
  "searchQueries": [],
  "categoryPaths": [],
  "maxItems": 20,
  "maxPagesPerUrl": 1,
  "includeProductDetails": false,
  "locale": "en"
}
```

# 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.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735"
        }
    ],
    "searchQueries": [],
    "categoryPaths": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/ankorstore-products-brands-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.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735" }],
    "searchQueries": [],
    "categoryPaths": [],
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/ankorstore-products-brands-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.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735"
    }
  ],
  "searchQueries": [],
  "categoryPaths": []
}' |
apify call automation-lab/ankorstore-products-brands-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Ankorstore Products & Brands Scraper",
        "description": "Extract public Ankorstore product and brand listings with prices, images, category breadcrumbs, product URLs, and supplier data.",
        "version": "0.1",
        "x-build-id": "QjLP1WjRGTbT8nNYD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~ankorstore-products-brands-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-ankorstore-products-brands-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~ankorstore-products-brands-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-ankorstore-products-brands-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~ankorstore-products-brands-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-ankorstore-products-brands-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": "🛒 Ankorstore start URLs",
                        "type": "array",
                        "description": "Public Ankorstore category, search, collection, brand, or product URLs. Category and search URLs usually return product cards without logging in.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Optional marketplace search phrases such as coffee, candles, skincare, or kids toys.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "categoryPaths": {
                        "title": "Category paths",
                        "type": "array",
                        "description": "Optional /shop/ paths without the domain, for example food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum listings",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of product/brand rows to save across all inputs.",
                        "default": 20
                    },
                    "maxPagesPerUrl": {
                        "title": "Maximum pages per URL",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many paginated listing pages to follow for each start URL.",
                        "default": 1
                    },
                    "includeProductDetails": {
                        "title": "Fetch product detail pages",
                        "type": "boolean",
                        "description": "Open each product page to enrich rows with description, SKU, and tags. Slower but useful for catalog research.",
                        "default": false
                    },
                    "locale": {
                        "title": "Marketplace locale",
                        "enum": [
                            "en",
                            "fr",
                            "de",
                            "es",
                            "it"
                        ],
                        "type": "string",
                        "description": "Ankorstore regional site to use when generating URLs from search queries or category paths.",
                        "default": "en"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
