# Kleinanzeigen.de Scraper (`haketa/kleinanzeigen-scraper`) Actor

Scrape listings from Kleinanzeigen.de (formerly eBay Kleinanzeigen) — Germany's largest classifieds platform with 50M+ listings. Extract prices, seller info, vehicle specs (km, year, fuel), real estate details (m², rooms, rent) and photos.

- **URL**: https://apify.com/haketa/kleinanzeigen-scraper.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** Automation, Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Kleinanzeigen.de Scraper

Extract classified listings from **[Kleinanzeigen.de](https://www.kleinanzeigen.de)** — Germany's largest classifieds platform (formerly eBay Kleinanzeigen) with **50M+ active listings** and **30M+ monthly visitors**. Get prices, seller info, vehicle specifications (km, year, fuel type), real estate details (m², rooms, rent) and photos with proper German format parsing.

### Why use Kleinanzeigen.de Scraper?

Most Kleinanzeigen scrapers only extract basic data (title + price + URL) from search pages. This scraper goes deeper with **category-aware field extraction** — it detects whether a listing is a vehicle, apartment or general item and extracts the relevant specifications. It also handles German data formats correctly: `1.990 €` is parsed as 1990 (not 1.99), dates like "Heute" and "Gestern" are converted to ISO format, and seller types (Privat/Gewerblich) are properly identified.

### What data can you extract?

#### Search mode (default — fast)

From search result pages: listing ID, title, price (correctly parsed from German format), price type (VB/Festpreis/Zu verschenken), location, posted date, thumbnail image and listing URL.

#### Detail mode (enable `scrapeDetails`)

From each listing's detail page: full description, all photo URLs, seller name and type (Privat/Gewerblich), seller rating and membership date, view count, phone number, condition (Neu/Gebraucht) and category-specific fields.

**Vehicle listings** (Autos category): Kilometerstand, Erstzulassung (first registration year), Kraftstoff (fuel type), Getriebe (transmission), Leistung (PS/kW), Fahrzeugtyp and Hubraum (engine displacement).

**Real estate listings** (Immobilien category): Wohnfläche (m²), Zimmer (rooms), Kaltmiete (base rent), Nebenkosten (utilities), Etage (floor) and Verfügbar ab (available from).

### How much does Kleinanzeigen.de Scraper cost?

| Mode | Speed | Approximate cost |
|---|---|---|
| Search only | ~25 listings/page | **~$2 per 1,000 listings** |
| With details | +1 request per listing | **~$5 per 1,000 listings** |

### Example output

#### General listing

```json
{
  "listingId": "2997612549",
  "title": "iPhone 14 Pro 128GB Space Black",
  "price": 650,
  "priceType": "VB",
  "currency": "EUR",
  "category": "Elektronik",
  "location": "München",
  "postedDate": "2026-04-28",
  "sellerType": "Privat",
  "condition": "Gebraucht",
  "listingUrl": "https://www.kleinanzeigen.de/s-anzeige/iphone-14-pro/2997612549-173-5941"
}
````

#### Vehicle listing (with details)

```json
{
  "title": "BMW 320d M-Paket Automatik Xenon",
  "price": 12990,
  "priceType": "VB",
  "category": "Autos",
  "location": "München",
  "sellerType": "Gewerblich",
  "kilometerstand": 125000,
  "erstzulassung": "2018",
  "kraftstoff": "Diesel",
  "getriebe": "Automatik",
  "leistung": "190 PS",
  "fahrzeugtyp": "Limousine"
}
```

#### Real estate listing (with details)

```json
{
  "title": "2-Zimmer Wohnung Schwabing",
  "price": 1200,
  "priceType": "Festpreis",
  "category": "Immobilien",
  "location": "München - Schwabing",
  "wohnflaeche": "65 m²",
  "zimmer": 2,
  "kaltmiete": 1200,
  "nebenkosten": 180,
  "etage": "3. OG",
  "verfuegbarAb": "01.06.2026"
}
```

### Input parameters

#### Quick start — search for cars in Munich

```json
{
  "searchUrls": ["https://www.kleinanzeigen.de/s-autos/muenchen/c216l5941"],
  "maxListings": 20
}
```

#### Full input reference

| Parameter | Type | Default | Description |
|---|---|---|---|
| `searchUrls` | array | `[]` | Direct Kleinanzeigen search/category URLs |
| `keyword` | string | `""` | Search term: `iphone`, `bmw 320d`, `wohnung` |
| `location` | string | `""` | City slug: `muenchen`, `berlin`, `hamburg` |
| `scrapeDetails` | boolean | `false` | Fetch detail pages for full data |
| `maxListings` | integer | `100` | Total listing cap. 0 = unlimited |
| `maxPages` | integer | `10` | Pages per search (~25 listings/page) |
| `requestDelay` | integer | `2000` | Delay between requests (ms) |

#### Category URLs

Use the category page URL directly for targeted scraping:

| Category | URL |
|---|---|
| Cars | `https://www.kleinanzeigen.de/s-autos/c216` |
| Real Estate | `https://www.kleinanzeigen.de/s-immobilien/c195` |
| Electronics | `https://www.kleinanzeigen.de/s-elektronik/c161` |
| Furniture | `https://www.kleinanzeigen.de/s-haus-garten/c80` |
| Jobs | `https://www.kleinanzeigen.de/s-jobs/c102` |
| Fashion | `https://www.kleinanzeigen.de/s-mode-beauty/c153` |

#### Search examples

**Cars in Berlin under €10,000:**

```json
{
  "searchUrls": ["https://www.kleinanzeigen.de/s-autos/berlin/preis:0:10000/c216l3331"]
}
```

**Apartments in Hamburg:**

```json
{
  "keyword": "wohnung",
  "location": "hamburg",
  "scrapeDetails": true,
  "maxListings": 50
}
```

**iPhones across Germany:**

```json
{
  "keyword": "iphone 15",
  "maxListings": 100
}
```

### How to scrape Kleinanzeigen.de

1. Click **Try for free** to open the scraper in Apify Console
2. Enter a search URL or keyword + location
3. Enable `scrapeDetails` for vehicle specs, real estate info and seller data
4. Click **Start** and download results as JSON, CSV or Excel

Run programmatically via [Apify API](https://docs.apify.com/api/v2), schedule daily runs for price monitoring, or integrate with Zapier, Make, Google Sheets and 100+ platforms.

### German data format handling

This scraper correctly handles German-specific formats that other scrapers get wrong:

**Prices:** `1.990 €` → 1990 (German uses `.` as thousands separator, `,` as decimal). The scraper also extracts price types: VB (Verhandlungsbasis/negotiable), Festpreis (fixed price), Zu verschenken (free).

**Dates:** `Heute` → today's ISO date, `Gestern` → yesterday, `vor 3 Tagen` → 3 days ago, `28.04.2026` → `2026-04-28`.

**Numbers:** `125.000 km` → 125000 (German thousands separator correctly removed).

### Use cases

**Used car market analysis** — Track prices for specific makes, models, mileage ranges and regions. German used car market is one of Europe's largest.

**Real estate monitoring** — Monitor rental and sales prices by city, neighborhood and property type. Essential for investors and property managers in German markets.

**Price arbitrage** — Find underpriced electronics, furniture and collectibles for resale on other platforms.

**B2B lead generation** — Filter commercial sellers (`sellerType: "Gewerblich"`) to build targeted lead lists of small businesses advertising on Kleinanzeigen.

**Market research** — Track consumer pricing trends, product availability and seasonal patterns across Germany's largest classifieds platform.

**Competitor monitoring** — Dealers and retailers monitor competitor listings and pricing strategies.

### Output fields reference

| Field | Source | Description |
|---|---|---|
| `listingId` | Search | Unique Kleinanzeigen listing ID |
| `title` | Search | Listing title |
| `price` | Search | Price in EUR (German format parsed) |
| `priceType` | Search | VB / Festpreis / Zu verschenken |
| `category` | Both | Listing category |
| `location` | Search | City/region |
| `postalCode` | Detail | German postal code (PLZ) |
| `postedDate` | Search | ISO date (German dates converted) |
| `sellerName` | Detail | Seller display name |
| `sellerType` | Detail | Privat / Gewerblich |
| `sellerRating` | Detail | Seller rating |
| `description` | Detail | Full listing text |
| `images` | Detail | All photo URLs |
| `viewCount` | Detail | Page views |
| `kilometerstand` | Detail | Mileage (vehicles) |
| `erstzulassung` | Detail | First registration (vehicles) |
| `kraftstoff` | Detail | Fuel type (vehicles) |
| `getriebe` | Detail | Transmission (vehicles) |
| `wohnflaeche` | Detail | Living area m² (real estate) |
| `zimmer` | Detail | Room count (real estate) |
| `kaltmiete` | Detail | Base rent € (real estate) |
| `nebenkosten` | Detail | Utilities € (real estate) |

### Integrations

Kleinanzeigen.de Scraper works with the full Apify ecosystem: API access from Python/Node.js/PHP, webhooks, Google Sheets export, Zapier/Make automation, and Slack/email notifications.

### Limitations

- Germany-focused platform (listings are in German)
- Cloudflare protection — uses Playwright browser for reliable access
- Vehicle and real estate fields require `scrapeDetails: true`
- Some seller phone numbers are only visible after clicking (not always extractable)
- View counts may not be available on all listings
- Rate limiting recommended — keep `requestDelay` above 2000ms for large scrapes

# Actor input Schema

## `searchUrls` (type: `array`):

Direct Kleinanzeigen.de search or category URLs. Examples: 'https://www.kleinanzeigen.de/s-autos/c216', 'https://www.kleinanzeigen.de/s-muenchen/iphone/k0l5941'. If provided, keyword/category inputs are ignored.

## `keyword` (type: `string`):

Search term. Examples: 'iphone', 'bmw 320d', 'wohnung', 'sofa'. Ignored if searchUrls is provided.

## `location` (type: `string`):

City or region slug from URL. Examples: 'muenchen', 'berlin', 'hamburg', 'koeln'. Ignored if searchUrls is provided.

## `scrapeDetails` (type: `boolean`):

Fetch each listing's detail page for full description, all photos, seller info, view count and category-specific fields (vehicle km/year/fuel, real estate m²/rooms/rent). Increases run time.

## `maxListings` (type: `integer`):

Maximum total listings to scrape. 0 = unlimited.

## `maxPages` (type: `integer`):

Maximum search pages to scrape. Each page has ~25 listings.

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

Proxy settings. Kleinanzeigen has Cloudflare — Playwright headed mode bypasses it without proxy.

## `requestDelay` (type: `integer`):

Delay between requests in milliseconds.

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.kleinanzeigen.de/s-autos/c216"
  ],
  "scrapeDetails": false,
  "maxListings": 10,
  "maxPages": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "requestDelay": 2000
}
```

# Actor output Schema

## `listingId` (type: `string`):

Unique listing ID

## `title` (type: `string`):

Listing title

## `price` (type: `string`):

Price in EUR

## `priceType` (type: `string`):

VB/FP/Zu verschenken

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

Listing category

## `location` (type: `string`):

City/region

## `sellerName` (type: `string`):

Seller name

## `sellerType` (type: `string`):

Privat/Gewerblich

## `condition` (type: `string`):

Item condition

## `postedDate` (type: `string`):

Listing date

## `listingUrl` (type: `string`):

Listing page URL

## `scrapedAt` (type: `string`):

ISO timestamp

# 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 = {
    "searchUrls": [
        "https://www.kleinanzeigen.de/s-autos/c216"
    ],
    "keyword": "",
    "location": "",
    "scrapeDetails": false,
    "maxListings": 10,
    "maxPages": 1,
    "proxyConfiguration": {
        "useApifyProxy": false
    },
    "requestDelay": 2000
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/kleinanzeigen-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 = {
    "searchUrls": ["https://www.kleinanzeigen.de/s-autos/c216"],
    "keyword": "",
    "location": "",
    "scrapeDetails": False,
    "maxListings": 10,
    "maxPages": 1,
    "proxyConfiguration": { "useApifyProxy": False },
    "requestDelay": 2000,
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/kleinanzeigen-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 '{
  "searchUrls": [
    "https://www.kleinanzeigen.de/s-autos/c216"
  ],
  "keyword": "",
  "location": "",
  "scrapeDetails": false,
  "maxListings": 10,
  "maxPages": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "requestDelay": 2000
}' |
apify call haketa/kleinanzeigen-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Kleinanzeigen.de Scraper",
        "description": "Scrape listings from Kleinanzeigen.de (formerly eBay Kleinanzeigen) — Germany's largest classifieds platform with 50M+ listings. Extract prices, seller info, vehicle specs (km, year, fuel), real estate details (m², rooms, rent) and photos.",
        "version": "0.0",
        "x-build-id": "W796GZUpzap1cUdZh"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~kleinanzeigen-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-kleinanzeigen-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/haketa~kleinanzeigen-scraper/runs": {
            "post": {
                "operationId": "runs-sync-haketa-kleinanzeigen-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/haketa~kleinanzeigen-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-kleinanzeigen-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchUrls": {
                        "title": "Search URLs",
                        "type": "array",
                        "description": "Direct Kleinanzeigen.de search or category URLs. Examples: 'https://www.kleinanzeigen.de/s-autos/c216', 'https://www.kleinanzeigen.de/s-muenchen/iphone/k0l5941'. If provided, keyword/category inputs are ignored.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "keyword": {
                        "title": "Search Keyword",
                        "type": "string",
                        "description": "Search term. Examples: 'iphone', 'bmw 320d', 'wohnung', 'sofa'. Ignored if searchUrls is provided."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City or region slug from URL. Examples: 'muenchen', 'berlin', 'hamburg', 'koeln'. Ignored if searchUrls is provided."
                    },
                    "scrapeDetails": {
                        "title": "Scrape Detail Pages",
                        "type": "boolean",
                        "description": "Fetch each listing's detail page for full description, all photos, seller info, view count and category-specific fields (vehicle km/year/fuel, real estate m²/rooms/rent). Increases run time.",
                        "default": false
                    },
                    "maxListings": {
                        "title": "Max Listings",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total listings to scrape. 0 = unlimited.",
                        "default": 100
                    },
                    "maxPages": {
                        "title": "Max Pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum search pages to scrape. Each page has ~25 listings.",
                        "default": 10
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Kleinanzeigen has Cloudflare — Playwright headed mode bypasses it without proxy."
                    },
                    "requestDelay": {
                        "title": "Request Delay (ms)",
                        "minimum": 0,
                        "maximum": 15000,
                        "type": "integer",
                        "description": "Delay between requests in milliseconds.",
                        "default": 2000
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
