# ASOS (`datasaurus/asos`) Actor

Scrape products from ASOS websites. Includes reviews and Q\&As. Fast and Efficient.

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

## Pricing

from $5.00 / 1,000 product-pages

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

## ASOS Scraper

Scrapes product data from [asos.com](https://www.asos.com/) and [topshop.com](https://www.topshop.com/) including product details, pricing, variants, stock status, and reviews.

### Features

- **All ASOS regional sites** — UK, US, Australia, France, Germany, Italy, Spain, Netherlands, Sweden, Denmark, Poland — with correct currency and language auto-detected from the URL
- **Topshop** — scrapes Topshop brand products via the ASOS API from `www.topshop.com` URLs
- **Search API** — scrape product listings by category or text search
- **Product page parsing** — full product details from embedded page data (no browser needed)
- **Stock/price API** — real-time pricing and variant-level stock status
- **Reviews & ratings** — embedded BazaarVoice review data from product pages
- **Group products** — handles both standard and group/multi-colour product pages

### Supported URL Types

#### ASOS — All Regions
| Region | URL Example |
|--------|-------------|
| 🇬🇧 UK | `https://www.asos.com/men/shoes/cat/?cid=4209` |
| 🇺🇸 US | `https://www.asos.com/us/men/shoes/cat/?cid=4209` |
| 🇫🇷 France | `https://www.asos.com/fr/hommes/chaussures/cat/?cid=4209` |
| 🇩🇪 Germany | `https://www.asos.com/de/herren/schuhe/cat/?cid=4209` |
| 🇦🇺 Australia | `https://www.asos.com/au/men/shoes/cat/?cid=4209` |
| 🇮🇹 Italy | `https://www.asos.com/it/uomo/scarpe/cat/?cid=4209` |
| 🇪🇸 Spain | `https://www.asos.com/es/hombre/zapatos/cat/?cid=4209` |
| 🇳🇱 Netherlands | `https://www.asos.com/nl/heren/schoenen/cat/?cid=4209` |
| 🇸🇪 Sweden | `https://www.asos.com/se/herr/skor/cat/?cid=4209` |
| 🇩🇰 Denmark | `https://www.asos.com/dk/herrer/sko/cat/?cid=4209` |
| 🇵🇱 Poland | `https://www.asos.com/pl/mezczyzni/buty/cat/?cid=4209` |

#### Topshop
| URL Type | Example |
|----------|---------|
| Main | `https://www.topshop.com/gb` |
| Search | `https://www.topshop.com/gb/search?q=dresses` |
| Category | `https://www.topshop.com/gb/topshop/category/...?cid=52990` |

#### Other ASOS URL types (all regions)
| URL Type | Example |
|----------|---------|
| Product page | `https://www.asos.com/nike/nike-air-force-1/prd/202389207` |
| Regional product | `https://www.asos.com/fr/nike/nike-air-force-1/prd/202389207` |
| Group product | `https://www.asos.com/brand/product-name/grp/12345` |
| Text search | `https://www.asos.com/search/?q=trainers` |
| Category landing | `https://www.asos.com/men/` |

### Region Auto-Detection

The store, currency, language and country are **automatically detected from the URL prefix**. No manual configuration needed:

| URL prefix | Store | Currency |
|------------|-------|----------|
| (none / UK) | `COM` | `GBP` |
| `/us/` | `US` | `USD` |
| `/au/` | `AU` | `AUD` |
| `/fr/` | `FR` | `EUR` |
| `/de/` | `DE` | `EUR` |
| `/it/` | `IT` | `EUR` |
| `/es/` | `ES` | `EUR` |
| `/nl/` | `NL` | `EUR` |
| `/se/` | `SE` | `SEK` |
| `/dk/` | `DK` | `DKK` |
| `/pl/` | `PL` | `PLN` |

You can mix URLs from different regions in a single run — each URL uses its own region settings automatically.

### Example Input

```json
{
  "start_urls": [
    {"url": "https://www.asos.com/men/shoes/cat/?cid=4209"},
    {"url": "https://www.asos.com/fr/femmes/robes/cat/?cid=8799"},
    {"url": "https://www.topshop.com/gb/search?q=dresses"}
  ],
  "scrape_product_page": true,
  "scrape_reviews": true,
  "max_products": 2,
  "max_reviews": 10
}
````

### Example Output

```json
{
  "name": "adidas Originals Handball Spezial gum sole trainers in brown and white",
  "brand": "adidas Originals",
  "productCode": "133694500",
  "productId": 205774480,
  "colour": "MULTI",
  "gender": "Unisex",
  "price": 90,
  "priceText": "£90.00",
  "rrp": 90,
  "rrpText": "£90.00",
  "currency": "GBP",
  "imageUrl": "https://images.asos-media.com/products/adidas-originals-handball-spezial-gum-sole-trainers-in-brown-and-white/205774480-1-multi",
  "description": "Shoes by adidas Originals\n\n• Off-duty days call for trainers\n• Low-profile design\n• Lace-up fastening\n• Padded cuff\n• Signature adidas branding\n• Gum sole\n• Supplier reference: IF6490",
  "brandDescription": "adidas Originals needs no introduction. The brand’s famous 3-Stripes can be seen on the track, field and in the latest streetwear trends. Scroll the adidas Originals at ASOS edit to get your fix, from fresh trainers from the iconic Superstar, Stan Smith, Gazelle and Continental 80 collections to archive-inspired adidas Originals tracksuits, T-shirts and sweatshirts. And if you’re in need of some fresh kit, then cop yourself some sweat-wicking shorts, vests and compression tights from adidas Performance.",
  "aboutMe": "Soft suede upper\n\nSole: 100% Rubber, Upper: 50% Leather, 50% Textile.",
  "careInfo": "Wipe clean with a soft dry cloth",
  "productType": "Trainers",
  "breadcrumb": [
    "Home",
    "Women",
    "Shoes",
    "adidas Originals Handball Spezial gum sole trainers in brown and white  "
  ],
  "variants": [
    {
      "size": "UK 6",
      "variantId": 205774483,
      "sku": "133694643",
      "colour": "MULTI",
      "isInStock": true,
      "isLowInStock": false,
      "ean": "4066765220004"
    },
    {
      "size": "UK 6.5",
      "variantId": 205774486,
      "sku": "133694644",
      "colour": "MULTI",
      "isInStock": true,
      "isLowInStock": false,
      "ean": "4066765219978"
    }
  ],
  "isInStock": true,
  "isMarkedDown": false,
  "reviewRating": 4.8,
  "reviewCount": 3417,
  "percentageRecommended": 97,
  "ratingDistribution": [
    {
      "ratingsValue": 5,
      "count": 3080
    },
    {
      "ratingsValue": 4,
      "count": 223
    },
    {
      "ratingsValue": 1,
      "count": 61
    },
    {
      "ratingsValue": 3,
      "count": 36
    },
    {
      "ratingsValue": 2,
      "count": 17
    }
  ],
  "reviews": [
    {
      "id": "181115362",
      "rating": 5,
      "submissionRecency": "New Today",
      "reviewText": "Trainers are stylish and comfortable. Look great with jeans",
      "title": "Up there with the best trainers",
      "isSyndicated": false,
      "syndicationSource": {
        "name": "adidas.com",
        "logoImageUrl": "https://photos-eu.bazaarvoice.com/photo/2/cGhvdG86YXR0cmlidXRpb25sb2dvMg/0e352a11-2bfd-4132-af54-7ca6edfbc5ba",
        "contentLink": "http://www.adidas.co.uk/product/KK0932.html"
      },
      "badges": {
        "verifiedPurchaser": {
          "id": "verifiedPurchaser",
          "contentType": "REVIEW"
        },
        "incentivizedReview": {
          "id": "incentivizedReview",
          "contentType": "REVIEW"
        }
      },
      "badgesOrder": [
        "verifiedPurchaser",
        "incentivizedReview"
      ],
      "contextDataValues": {},
      "contextDataValuesOrder": [],
      "additionalFields": {},
      "additionalFieldsOrder": [],
      "photos": [],
      "videos": []
    }
  ],
  "link": "https://www.asos.com/adidas-originals/adidas-originals-handball-spezial-gum-sole-trainers-in-brown-and-white/prd/205774480"
}
```

### Output Fields

| Field | Description |
|-------|-------------|
| `name` | Product name |
| `brand` | Brand name |
| `productCode` | ASOS product code |
| `productId` | ASOS product ID |
| `colour` | Product colour |
| `gender` | Gender category |
| `price` / `priceText` | Current price (in local currency) |
| `rrp` / `rrpText` | Original price (if marked down) |
| `currency` | Currency code |
| `isMarkedDown` | Whether product is on sale |
| `link` | Product page URL |
| `imageUrl` | Main product image |
| `additionalImageUrls` | Additional product images |
| `description` | Product description (plain text) |
| `brandDescription` | Brand description |
| `aboutMe` | Materials/composition info |
| `careInfo` | Care instructions |
| `sizeAndFit` | Size and fit guide |
| `productType` | Product type (e.g. "Trainers") |
| `breadcrumb` | Category breadcrumb path |
| `variants` | Size/colour variants with stock info |
| `isInStock` | Overall stock status |
| `isSellingFast` | Selling fast indicator |
| `reviewRating` | Average review rating |
| `reviewCount` | Total review count |
| `percentageRecommended` | % of reviewers who recommend |
| `ratingDistribution` | Rating breakdown (1-5 stars) |
| `reviews` | Individual review entries |

### Pricing (Pay-Per-Event)

This Actor uses pay-per-event billing. You are only charged for what you actually scrape.

| Event | Price | When charged |
|---|---|---|
| `product-listing` | $0.002 | Each product discovered from a category, brand, or search listing (Algolia API) |
| `product-page` | $0.005 | Each product enriched with full detail from the product page (description, ingredients, directions) |
| `review` | $0.0005 | Per individual customer review fetched |

Reviews require the product page to be fetched.

# Actor input Schema

## `start_urls` (type: `array`):

Supports all ASOS regional sites and Topshop.

ASOS URLs:
UK:  https://www.asos.com/men/shoes/cat/?cid=4209
US:  https://www.asos.com/us/men/shoes/cat/?cid=4209
FR:  https://www.asos.com/fr/hommes/chaussures/cat/?cid=4209
DE:  https://www.asos.com/de/herren/schuhe/cat/?cid=4209
AU:  https://www.asos.com/au/men/shoes/cat/?cid=4209
IT:  https://www.asos.com/it/uomo/scarpe/cat/?cid=4209
ES:  https://www.asos.com/es/hombre/zapatos/cat/?cid=4209
NL:  https://www.asos.com/nl/heren/schoenen/cat/?cid=4209
SE:  https://www.asos.com/se/herr/skor/cat/?cid=4209
DK:  https://www.asos.com/dk/herrer/sko/cat/?cid=4209
PL:  https://www.asos.com/pl/mezczyzni/buty/cat/?cid=4209

Topshop:
https://www.topshop.com/gb/search?q=dresses
https://www.topshop.com/gb

Product: https://www.asos.com/brand/product-name/prd/12345
Search: https://www.asos.com/search/?q=trainers

## `scrape_product_page` (type: `boolean`):

Fetch the individual product detail page for every product. Adds full details, variants, sizes, descriptions and care info to each output item.

## `scrape_reviews` (type: `boolean`):

Scraping reviews requires fetching the product detail page for every product, so will charge the product-detail event rate per product. Reviews are charged at the review event rate. ASOS reviews are embedded in the product page (up to 3 per product).

## `max_products_per_category` (type: `integer`):

Maximum number of products to scrape per category when scraping the whole site. Use lower numbers for testing. Leave empty to fetch all products.

## `max_products` (type: `integer`):

Maximum number of products to scrape per start URL. Use lower numbers for testing. Leave empty to fetch all products.

## `max_reviews` (type: `integer`):

Total number of reviews to fetch per product via the ASOS reviews API. Leave empty to fetch all available reviews. Reviews are charged at the review event rate.

## Actor input object example

```json
{
  "start_urls": [
    {
      "url": "https://www.asos.com/men/shoes/cat/?cid=4209"
    }
  ],
  "scrape_product_page": true,
  "scrape_reviews": true,
  "max_products": 10,
  "max_reviews": 10
}
```

# Actor output Schema

## `results` (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 = {
    "start_urls": [
        {
            "url": "https://www.asos.com/men/shoes/cat/?cid=4209"
        }
    ],
    "max_products": 10,
    "max_reviews": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("datasaurus/asos").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 = {
    "start_urls": [{ "url": "https://www.asos.com/men/shoes/cat/?cid=4209" }],
    "max_products": 10,
    "max_reviews": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("datasaurus/asos").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 '{
  "start_urls": [
    {
      "url": "https://www.asos.com/men/shoes/cat/?cid=4209"
    }
  ],
  "max_products": 10,
  "max_reviews": 10
}' |
apify call datasaurus/asos --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ASOS",
        "description": "Scrape products from ASOS websites. Includes reviews and Q&As. Fast and Efficient.",
        "version": "0.1",
        "x-build-id": "mchTs1ZzMcxa9ijgz"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datasaurus~asos/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datasaurus-asos",
                "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/datasaurus~asos/runs": {
            "post": {
                "operationId": "runs-sync-datasaurus-asos",
                "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/datasaurus~asos/run-sync": {
            "post": {
                "operationId": "run-sync-datasaurus-asos",
                "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": [
                    "start_urls"
                ],
                "properties": {
                    "start_urls": {
                        "title": "Start URLs - ASOS or Topshop product, category, or search page",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Supports all ASOS regional sites and Topshop.\n\nASOS URLs:\n  UK:  https://www.asos.com/men/shoes/cat/?cid=4209\n  US:  https://www.asos.com/us/men/shoes/cat/?cid=4209\n  FR:  https://www.asos.com/fr/hommes/chaussures/cat/?cid=4209\n  DE:  https://www.asos.com/de/herren/schuhe/cat/?cid=4209\n  AU:  https://www.asos.com/au/men/shoes/cat/?cid=4209\n  IT:  https://www.asos.com/it/uomo/scarpe/cat/?cid=4209\n  ES:  https://www.asos.com/es/hombre/zapatos/cat/?cid=4209\n  NL:  https://www.asos.com/nl/heren/schoenen/cat/?cid=4209\n  SE:  https://www.asos.com/se/herr/skor/cat/?cid=4209\n  DK:  https://www.asos.com/dk/herrer/sko/cat/?cid=4209\n  PL:  https://www.asos.com/pl/mezczyzni/buty/cat/?cid=4209\n\nTopshop:\n  https://www.topshop.com/gb/search?q=dresses\n  https://www.topshop.com/gb\n\nProduct: https://www.asos.com/brand/product-name/prd/12345\nSearch: https://www.asos.com/search/?q=trainers",
                        "default": [
                            {
                                "url": "https://www.asos.com/men/shoes/cat/?cid=4209"
                            }
                        ],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "scrape_product_page": {
                        "title": "Scrape Product Page – includes full details, variants, care info.",
                        "type": "boolean",
                        "description": "Fetch the individual product detail page for every product. Adds full details, variants, sizes, descriptions and care info to each output item.",
                        "default": true
                    },
                    "scrape_reviews": {
                        "title": "Scrape Reviews.",
                        "type": "boolean",
                        "description": "Scraping reviews requires fetching the product detail page for every product, so will charge the product-detail event rate per product. Reviews are charged at the review event rate. ASOS reviews are embedded in the product page (up to 3 per product).",
                        "default": true
                    },
                    "max_products_per_category": {
                        "title": "Max Products per Category – applies when scraping the whole site",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of products to scrape per category when scraping the whole site. Use lower numbers for testing. Leave empty to fetch all products."
                    },
                    "max_products": {
                        "title": "Max Products per start URL",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of products to scrape per start URL. Use lower numbers for testing. Leave empty to fetch all products."
                    },
                    "max_reviews": {
                        "title": "Max Reviews per product",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Total number of reviews to fetch per product via the ASOS reviews API. Leave empty to fetch all available reviews. Reviews are charged at the review event rate."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
