# AutoScout24 Details Scraper (`alkausari_mujahid/autoscout24-details-scraper`) Actor

Scrape car listings from AutoScout24 — Europe's largest car marketplace. Extract price, mileage, fuel type, power, gearbox, dealer info, and full-resolution photos from any search result. Just paste your search URL and get structured data ready to download.

- **URL**: https://apify.com/alkausari\_mujahid/autoscout24-details-scraper.md
- **Developed by:** [Alkausari M](https://apify.com/alkausari_mujahid) (community)
- **Categories:** Integrations, Automation, E-commerce
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.00005 / actor start

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

## AutoScout24 Details Scraper

Extract structured car listing data from [AutoScout24](https://www.autoscout24.com) — Europe's largest online car marketplace. This Actor collects detailed information from individual car listing pages including **price, mileage, fuel type, power, dealer info, and full-resolution photos**. No coding required — just paste your search URL and run.

### What does AutoScout24 Details Scraper do?

This scraper works in two automatic stages:

1. **Listings stage** — calls [alkausari_mujahid/autoscout24-listings-urls-scraper](https://apify.com/alkausari_mujahid/autoscout24-listings-urls-scraper) to handle AutoScout24's dynamic, JavaScript-rendered search pages and collect all matching car listing URLs.
2. **Details stage** — processes each car's detail page directly using a fast HTTP crawler (no browser needed), extracting the full information and saving it to a structured dataset you can download as JSON, CSV, or Excel.

This two-stage approach is significantly faster than a browser-only scraper: the heavy JavaScript rendering is handled only for listing pages, while the far more numerous detail pages are scraped with lightweight HTTP requests.

The result is a clean, ready-to-use dataset of cars matching your search criteria, complete with high-resolution photos.

### Why use AutoScout24 Details Scraper?

- **Market research** — track prices, availability, and specs for specific car models across Europe.
- **Price comparison** — compare dealer pricing for the same make and model across different regions.
- **Lead generation** — build a list of dealers selling specific car types.
- **Inventory monitoring** — schedule regular runs to see how prices change over time.
- **Data analysis** — export to CSV/Excel or connect to your own tools via the Apify API.

### How to use AutoScout24 Details Scraper

**Step 1** — Go to [AutoScout24](https://www.autoscout24.com) and use the filters (make, model, year, price, mileage, country, etc.) to set up the search you want.

**Step 2** — Copy the URL from your browser's address bar after applying the filters.

**Step 3** — Open this Actor in Apify Console and paste the URL into the **Listing page URLs** field.

**Step 4** — Enter your **Apify API Token**. You can find it in your [Apify account settings](https://console.apify.com/settings/integrations) under the API & Integrations tab.

**Step 5** — Click **Start** and wait for the run to finish. The Actor will first collect all matching car links, then scrape each one.

**Step 6** — Go to the **Output** tab and download your results in JSON, CSV, HTML, or Excel format.

### Input

| Field | Description | Required |
|---|---|---|
| **Listing page URLs** | One or more AutoScout24 search/filter page URLs | Yes* |
| **Apify API Token** | Your personal Apify token (used to run the listings scraper internally) | Yes* |
| **Max detail pages to scrape** | Limits how many car detail pages are scraped (default: 200) | No |
| **Max requests for listings scraper** | Limits how many pages the listings stage visits (default: 200) | No |
| **Proxy Configuration** | Proxy settings for scraping. Leave as default if unsure. | No |
| **Detail page URLs** *(developer mode)* | Paste specific car detail page URLs to skip the listings stage — useful for testing | No |

*\* Not required when using developer mode (Detail page URLs).*

#### Example input

```json
{
    "startUrls": [
        { "url": "https://www.autoscout24.com/lst/audi?atype=C&cy=D&sort=standard" }
    ],
    "apifyToken": "your_apify_token_here",
    "maxRequestsPerCrawl": 200,
    "proxyConfiguration": { "useApifyProxy": false }
}
````

### Output

Each car listing is saved as one record. You can download the full dataset in **JSON, CSV, HTML, or Excel** format from the Output tab.

#### Example output record

```json
{
    "url": "https://www.autoscout24.com/offers/audi-q5-sportback-...",
    "title": "Audi Q5",
    "make": "Audi Q5",
    "version": "Sportback 2.0 TDI",
    "price": "€ 73,900",
    "mileage": "12,000 km",
    "gearbox": "Automatic",
    "firstRegistration": "01/2024",
    "fuelType": "Electric/Gasoline",
    "power": "220 kW (299 hp)",
    "sellerType": "Dealer",
    "location": "Bolzano, Italy",
    "dealerName": "Eurocar Italia Srl",
    "dealerRating": "4.5",
    "dealerRatingsCount": "38 Ratings",
    "imageCount": 9,
    "images": [
        "https://prod.pictures.autoscout24.net/listing-images/.../1920x1080.jpg",
        "..."
    ]
}
```

### Data fields

| Field | Description |
|---|---|
| `url` | Direct link to the car listing on AutoScout24 |
| `title` | Car title as shown on the listing page |
| `make` | Brand name (e.g. Audi, BMW, Volkswagen) |
| `version` | Model version or trim level |
| `price` | Listed price in the seller's local currency |
| `mileage` | Odometer reading |
| `gearbox` | Transmission type (Manual / Automatic) |
| `firstRegistration` | Month and year the car was first registered |
| `fuelType` | Fuel type (Gasoline, Diesel, Electric, Hybrid, etc.) |
| `power` | Engine power in kW and hp |
| `sellerType` | Whether the seller is a Dealer or a Private individual |
| `location` | City and country of the seller |
| `dealerName` | Name of the dealership |
| `dealerRating` | Average dealer rating score |
| `dealerRatingsCount` | Number of ratings the dealer has received |
| `imageCount` | Total number of photos on the listing |
| `images` | Array of full-resolution photo URLs (1920×1080) |

### Tips and advanced options

- **Narrow your search first** — apply filters on AutoScout24 (model year, mileage, price, country) before copying the URL. This keeps your runs fast and focused on exactly what you need.
- **Scrape multiple searches at once** — you can paste several search URLs in the Listing page URLs field to combine results from different filters into one dataset.
- **Schedule regular runs** — use Apify's built-in scheduler to run this Actor weekly or daily and track how car prices change over time.
- **Test before a big run** — use the **Detail page URLs (developer mode)** field with one or two specific car URLs to verify the data looks correct before running a full scrape.
- **Download as CSV or Excel** — perfect for opening directly in Google Sheets or Microsoft Excel for your own analysis, no extra tools needed.
- **Connect to other apps** — use Apify's integrations with Zapier, Make (Integromat), Google Sheets, and more to send results automatically wherever you need them.

### FAQ, disclaimers, and support

**Is it legal to scrape AutoScout24?**
This Actor collects only publicly visible listing data — the same information any person sees when browsing the site. Always use the data responsibly and in accordance with [AutoScout24's Terms of Service](https://www.autoscout24.com/informations/terms-and-conditions/). Do not use scraped data for spam, unauthorized redistribution, or any purpose that violates applicable laws.

**Why are some fields empty (null)?**
AutoScout24 sellers are not required to fill in every field. If a car listing is missing mileage or first registration date, those fields will appear as `null` in the output.

**The Actor finished but I got fewer results than expected — why?**
The **Max detail pages to scrape** setting limits how many car pages are processed. Increase this value if you need more results. Also check whether your search URL returned fewer listings than expected.

**Can I scrape cars from a specific country?**
Yes — AutoScout24 lets you filter by country directly on the website. Apply the country filter, copy the URL, and paste it into the Actor. You can also combine multiple country URLs.

**I found a bug or need help.**
Please open an issue in the Issues tab of this Actor on Apify Console. For custom scraping solutions or enterprise needs, contact us through Apify.

# Actor input Schema

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

AutoScout24 search/listing page URLs to pass to the listings scraper Actor. Not used when detailUrls is provided.

## `maxRequestsPerCrawl` (type: `integer`):

Maximum number of detail pages the CheerioCrawler will process.

## `apifyToken` (type: `string`):

Your Apify API token used to call the listings scraper Actor.

## `listingsActorId` (type: `string`):

The Apify Actor ID of the AutoScout24 listings scraper.

## `listingsMaxRequests` (type: `integer`):

Maximum number of requests the listings scraper Actor is allowed to make.

## `detailUrls` (type: `array`):

Provide specific AutoScout24 car detail page URLs to scrape directly, bypassing the listings scraper. Useful for testing or scraping individual listings.

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

Proxy settings used for scraping detail pages (and forwarded to the listings scraper).

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.autoscout24.com/offers/audi-rs-q8-4-0tfsi-640cv-quattro-tiptronic-performance-electric-gasoline-white-8104d025-4f96-424d-93d4-37403993c8e8?sort=standard&desc=0&position=2&source_otp=t50&source=listpage_search-results&order_bucket=unknown&boost_level=t50&applied_boost_level=t50&relevance_adjustment=boost&boosting_product=mia"
    }
  ],
  "maxRequestsPerCrawl": 10,
  "listingsActorId": "KIfR2zmzfpgY3JfX1",
  "listingsMaxRequests": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://www.autoscout24.com/offers/audi-rs-q8-4-0tfsi-640cv-quattro-tiptronic-performance-electric-gasoline-white-8104d025-4f96-424d-93d4-37403993c8e8?sort=standard&desc=0&position=2&source_otp=t50&source=listpage_search-results&order_bucket=unknown&boost_level=t50&applied_boost_level=t50&relevance_adjustment=boost&boosting_product=mia"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("alkausari_mujahid/autoscout24-details-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.autoscout24.com/offers/audi-rs-q8-4-0tfsi-640cv-quattro-tiptronic-performance-electric-gasoline-white-8104d025-4f96-424d-93d4-37403993c8e8?sort=standard&desc=0&position=2&source_otp=t50&source=listpage_search-results&order_bucket=unknown&boost_level=t50&applied_boost_level=t50&relevance_adjustment=boost&boosting_product=mia" }],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("alkausari_mujahid/autoscout24-details-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.autoscout24.com/offers/audi-rs-q8-4-0tfsi-640cv-quattro-tiptronic-performance-electric-gasoline-white-8104d025-4f96-424d-93d4-37403993c8e8?sort=standard&desc=0&position=2&source_otp=t50&source=listpage_search-results&order_bucket=unknown&boost_level=t50&applied_boost_level=t50&relevance_adjustment=boost&boosting_product=mia"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call alkausari_mujahid/autoscout24-details-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AutoScout24 Details Scraper",
        "description": "Scrape car listings from AutoScout24 — Europe's largest car marketplace. Extract price, mileage, fuel type, power, gearbox, dealer info, and full-resolution photos from any search result. Just paste your search URL and get structured data ready to download.",
        "version": "0.0",
        "x-build-id": "dFyXsROuP5yhVq7JX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/alkausari_mujahid~autoscout24-details-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-alkausari_mujahid-autoscout24-details-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/alkausari_mujahid~autoscout24-details-scraper/runs": {
            "post": {
                "operationId": "runs-sync-alkausari_mujahid-autoscout24-details-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/alkausari_mujahid~autoscout24-details-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-alkausari_mujahid-autoscout24-details-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "startUrls",
                    "apifyToken",
                    "listingsActorId"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Listing page URLs",
                        "type": "array",
                        "description": "AutoScout24 search/listing page URLs to pass to the listings scraper Actor. Not used when detailUrls is provided.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxRequestsPerCrawl": {
                        "title": "Max Requests Per Crawl",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of detail pages the CheerioCrawler will process.",
                        "default": 10
                    },
                    "apifyToken": {
                        "title": "Apify API Token",
                        "type": "string",
                        "description": "Your Apify API token used to call the listings scraper Actor."
                    },
                    "listingsActorId": {
                        "title": "Listings scraper Actor ID",
                        "type": "string",
                        "description": "The Apify Actor ID of the AutoScout24 listings scraper.",
                        "default": "KIfR2zmzfpgY3JfX1"
                    },
                    "listingsMaxRequests": {
                        "title": "Max Requests Per Crawl",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of requests the listings scraper Actor is allowed to make.",
                        "default": 10
                    },
                    "detailUrls": {
                        "title": "Detail page URLs",
                        "type": "array",
                        "description": "Provide specific AutoScout24 car detail page URLs to scrape directly, bypassing the listings scraper. Useful for testing or scraping individual listings.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings used for scraping detail pages (and forwarded to the listings scraper).",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
