# Argos (`datasaurus/agros`) Actor

Scrape products from Argos.co.uk. Includes reviews and Q\&As. Fast and efficient.

- **URL**: https://apify.com/datasaurus/agros.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

## Argos.co.uk Scraper

Scrapes product data from Argos.co.uk including listings, product details, reviews, and Q&As.

### Supported URL Types

| URL Type | Example | Behaviour |
|---|---|---|
| Whole site | `https://www.argos.co.uk/` | Auto-discovers all browse categories |
| Browse / category | `https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/` | Paginates through all listing pages |
| Search | `https://www.argos.co.uk/search/wireless-headphones/` | Search result listings |
| Product page | `https://www.argos.co.uk/product/7929184` | Single product |

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `start_urls` | array | required | URLs to scrape (whole site, category, search, or product page URLs) |
| `scrape_product_page` | boolean | `false` | Fetch full product detail pages (adds description, specs, images, variants, review stats) |
| `max_products_per_category` | integer | `60` | Max products per category or search URL |
| `max_categories` | integer | `5` | Max browse categories when scraping the whole site |
| `max_reviews` | integer | `10` | Total reviews to fetch per product (10 per API call); set to `0` to turn off |
| `max_question_answers` | integer | `10` | Total Q&As to fetch per product (10 per API call); set to `0` to turn off |

**When is `product-page` charged?**  
`product-page` is charged (instead of `product-listing`) whenever product page scraping runs. This happens when:
- `scrape_product_page` is `true`, **or**
- `max_reviews` is greater than `0`, **or**
- `max_question_answers` is greater than `0`

Setting `max_reviews` or `max_question_answers` above `0` **automatically enables product page scraping** — you do not need to also set `scrape_product_page: true`. Reviews and Q&A are fetched during the product page pass, so the `product-page` event is charged per product in all these cases, in addition to `review` and `question-answer` per fetched item.

### Example Inputs

#### Category With Full Product Pages + Reviews + Q&As

```json
{
  "start_urls": [
    { "url": "https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/" }
    { "url": "https://www.argos.co.uk/product/4584759" }
  ],
  "scrape_product_page": true,
  "max_products_per_category": 60,
  "max_review_pages": 2,
  "max_question_answers": 1
}
````

### Example Output

```json
{
  "productId": "4584759",
  "name": "Apple Magic Keyboard (USB–C) - British English",
  "description": "Magic Keyboard delivers a remarkably comfortable and precise typing experience for Mac and Apple Vision Pro. It's also wireless and rechargeable, with an incredibly long-lasting internal battery that will power your keyboard for about a month or more between charges.",
  "brand": "Apple",
  "price": "99.00",
  "currency": "GBP",
  "wasPrice": "109.00",
  "onSale": true,
  "discountPercentage": 9,
  "modelNumber": "MK2C3B/A",
  "ean": "195949634123",
  "attributes": {
    "Connection": "Wireless, Bluetooth, USB-C",
    "Compatible with": "Mac, iPad, iPhone, Apple Vision Pro",
    "EAN": "195949634123"
  },
  "rating": 4.65,
  "reviewCount": 20,
  "reviewStats": {
    "count": 20,
    "avg_rating": 4.65
  },
  "reviewSummary": "Users praise the Apple keyboard for its sleek design, ease of connection, portability, and excellent build quality. Some note it lacks backlighting and is a bit pricey.",
  "promoTag": "Save £10",
  "delivery": "Available for delivery",
  "hasOptions": false,
  "availability": "In stock",
  "clickAndCollect": "Available for click and collect",
  "imageUrl": "https://media.4rgos.it/s/Argos/4584759_R_SET/1?w=540&h=540&qlt=75&fmt=webp",
  "images": [
    "https://media.4rgos.it/i/Argos/4584759_R_Z001A",
    "https://media.4rgos.it/i/Argos/4584759_R_Z002A",
    "https://media.4rgos.it/i/Argos/4584759_R_Z003A"
  ],
  "breadcrumb": [
    { "name": "Technology", "url": "https://www.argos.co.uk/browse/technology/c:29949/" },
    { "name": "Computer accessories", "url": "https://www.argos.co.uk/browse/technology/computer-accessories/c:30042/" },
    { "name": "PC keyboards", "url": "https://www.argos.co.uk/browse/technology/computer-accessories/pc-keyboards/c:30058/" }
  ],
  "url": "https://www.argos.co.uk/product/4584759",
  "numberOfReviews": 20,
  "reviews": [
    {
      "Id": "180546556",
      "SourceClient": "argos",
      "AuthorId": "29427671",
      "ContentLocale": "en_GB",
      "Rating": 5,
      "IsRecommended": true,
      "ModerationStatus": "APPROVED",
      "SubmissionTime": "2026-03-23T13:20:55.000+00:00",
      "ReviewText": "Well designed, easy to connect keyboard. Looks good and works well with my Mac",
      "Title": "Well designed and good looking",
      "UserNickname": "Peregrine",
      "SecondaryRatings": {
        "valueformoney": 4,
        "Design": 5,
        "Quality": 5
      },
      "Photos": []
    },
    {
      "Id": "179339670",
      "SourceClient": "argos",
      "UserLocation": "London",
      "AuthorId": "127307712",
      "ContentLocale": "en_GB",
      "Rating": 4,
      "IsRecommended": true,
      "ModerationStatus": "APPROVED",
      "SubmissionTime": "2026-01-24T14:10:00.000+00:00",
      "ReviewText": "Got it and it's perfect for me",
      "Title": "Beautiful and snappy",
      "UserNickname": "Johnjohn",
      "SecondaryRatings": {
        "valueformoney": 4,
        "Design": 4,
        "Quality": 4
      },
      "Photos": []
    }
  ],
  "numberOfQAs": 13,
  "questionAnswers": [
    {
      "Id": "10315892",
      "SourceClient": "argos",
      "ContentLocale": "en_GB",
      "TotalAnswerCount": 1,
      "QuestionSummary": "Would this charge an iPad whilst in use? Specifically a 2022 10th Generation iPad.",
      "SubmissionTime": "2026-03-22T16:47:23.000+00:00",
      "UserNickname": "Cmall",
      "AnswerIds": ["8855656"],
      "Answers": [
        {
          "Id": "8855656",
          "IsBrandAnswer": true,
          "SubmissionTime": "2026-03-23T09:10:31.000+00:00",
          "AnswerText": "Hello, from the information we have available, unfortunately no, this USB-C Apple Magic Keyboard can't be used to charge an iPad. Thank you for using Argos Q&A.",
          "UserNickname": "Argos Technical Support"
        }
      ]
    },
    {
      "Id": "10287260",
      "SourceClient": "argos",
      "ContentLocale": "en_GB",
      "TotalAnswerCount": 1,
      "QuestionSummary": "Is this compatible with MacBook Air 13inch M4",
      "SubmissionTime": "2026-02-28T18:52:01.000+00:00",
      "UserNickname": "Chris",
      "AnswerIds": ["8839867"],
      "Answers": [
        {
          "Id": "8839867",
          "IsBrandAnswer": true,
          "SubmissionTime": "2026-03-01T10:28:01.000+00:00",
          "AnswerText": "Hello, yes this British English USB-C Apple Magic Keyboard is compatible with a MacBook Air (13-inch, M4, 2025). Thank you for using Argos Q&A.",
          "UserNickname": "Argos Technical Support"
        }
      ]
    }
  ]
}
```

# Actor input Schema

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

Whole site: https://www.argos.co.uk/
Browse/category page: e.g. https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/
Search page: e.g. https://www.argos.co.uk/search/wireless-headphones/
Product page: e.g. https://www.argos.co.uk/product/7929184

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

Fetch the individual product detail page for every product found in listing/search results. Adds full description, specifications, images, variants, and review stats to each output item. Note: enabling reviews (max\_reviews > 0) or Q\&As (max\_question\_answers > 0) will automatically trigger product detail page fetching even if this is set to false — the detail page visit is required to call the BazaarVoice APIs.

## `max_categories` (type: `integer`):

Maximum number of browse categories to scrape per start URL. Only used when the start URL is the Argos homepage.

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

Maximum number of products to scrape per category or search URL. Leave empty to fetch all products (crawler will page through all listing pages).

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

Total number of reviews to fetch per product (fetched in batches of 10). Set to 0 to turn off review scraping. Important: any value greater than 0 forces the product detail page to be fetched for every product, even if 'Scrape Product Page' is disabled — this affects proxy usage and will charge the product-detail event rate per product.

## `max_question_answers` (type: `integer`):

Total number of questions and answers to fetch per product (fetched in batches of 10). Set to 0 to turn off Q\&A scraping. Important: any value greater than 0 forces the product detail page to be fetched for every product, even if 'Scrape Product Page' is disabled — this affects proxy usage and will charge the product-detail event rate per product.

## Actor input object example

```json
{
  "start_urls": [
    {
      "url": "https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/"
    }
  ],
  "scrape_product_page": false,
  "max_categories": 5,
  "max_reviews": 10,
  "max_question_answers": 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.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/"
        }
    ],
    "max_reviews": 10,
    "max_question_answers": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("datasaurus/agros").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.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/" }],
    "max_reviews": 10,
    "max_question_answers": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("datasaurus/agros").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.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/"
    }
  ],
  "max_reviews": 10,
  "max_question_answers": 10
}' |
apify call datasaurus/agros --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Argos",
        "description": "Scrape products from Argos.co.uk. Includes reviews and Q&As. Fast and efficient.",
        "version": "0.1",
        "x-build-id": "fHh3da5KWHhNX4WkY"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datasaurus~agros/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datasaurus-agros",
                "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~agros/runs": {
            "post": {
                "operationId": "runs-sync-datasaurus-agros",
                "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~agros/run-sync": {
            "post": {
                "operationId": "run-sync-datasaurus-agros",
                "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 – whole site, browse/category page, search page or product page",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Whole site: https://www.argos.co.uk/\nBrowse/category page: e.g. https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/\nSearch page: e.g. https://www.argos.co.uk/search/wireless-headphones/\nProduct page: e.g. https://www.argos.co.uk/product/7929184",
                        "default": [
                            {
                                "url": "https://www.argos.co.uk/browse/technology/laptops-and-pcs/laptops/c:30049/"
                            }
                        ],
                        "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 description, specifications, images, variants and review stats. Fetches each individual product page so takes more time.",
                        "type": "boolean",
                        "description": "Fetch the individual product detail page for every product found in listing/search results. Adds full description, specifications, images, variants, and review stats to each output item. Note: enabling reviews (max_reviews > 0) or Q&As (max_question_answers > 0) will automatically trigger product detail page fetching even if this is set to false — the detail page visit is required to call the BazaarVoice APIs.",
                        "default": false
                    },
                    "max_categories": {
                        "title": "Max Categories per start URL – applies when scraping the whole site (https://www.argos.co.uk/)",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Maximum number of browse categories to scrape per start URL. Only used when the start URL is the Argos homepage.",
                        "default": 5
                    },
                    "max_products_per_category": {
                        "title": "Max Products per Category - applies when scraping whole site. Leave blank to scrape all products in each category.",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Maximum number of products to scrape per category or search URL. Leave empty to fetch all products (crawler will page through all listing pages)."
                    },
                    "max_reviews": {
                        "title": "Max Reviews per product – set to 0 to turn off",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Total number of reviews to fetch per product (fetched in batches of 10). Set to 0 to turn off review scraping. Important: any value greater than 0 forces the product detail page to be fetched for every product, even if 'Scrape Product Page' is disabled — this affects proxy usage and will charge the product-detail event rate per product.",
                        "default": 10
                    },
                    "max_question_answers": {
                        "title": "Max Q&As per product – set to 0 to turn off",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Total number of questions and answers to fetch per product (fetched in batches of 10). Set to 0 to turn off Q&A scraping. Important: any value greater than 0 forces the product detail page to be fetched for every product, even if 'Scrape Product Page' is disabled — this affects proxy usage and will charge the product-detail event rate per product.",
                        "default": 10
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
