# Kleinanzeigen Scraper 🇩🇪 (new-listing alerts, no login) (`tagadanar/kleinanzeigen-scraper`) Actor

Search kleinanzeigen.de and get title, price, location, seller type, posting time and photos, newest first. Monitor mode remembers past runs and returns only new listings, so a schedule turns it into an alert feed for fresh deals. Fixed price per listing, platform usage included.

- **URL**: https://apify.com/tagadanar/kleinanzeigen-scraper.md
- **Developed by:** [Tagada Data](https://apify.com/tagadanar) (community)
- **Categories:** E-commerce, Automation, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.40 / 1,000 listing scrapeds

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 Scraper: Prices, Locations & New-Listing Alerts

Search kleinanzeigen.de, Germany's biggest classifieds site, and get every matching listing as clean JSON: title, price with the VB negotiable flag, postal code and district, seller type, posting time, tags and photo. Results come back newest first, exactly as on the site.

The part most scrapers skip: turn on **monitor mode** and the actor remembers every listing it has already reported. Run it on a schedule and each run returns only what is genuinely new since the last one, optionally pushed straight to Slack or any webhook. If you resell, flip or source stock, that is the difference between finding a bargain and finding it first. A run that finds nothing new costs you next to nothing.

No browser, no login, no proxy. It reads the server-rendered pages directly, so runs take seconds, not minutes.

### What you get per listing

| Field | Description |
| --- | --- |
| `title`, `url`, `adId` | Listing title, its canonical URL and the site's listing id |
| `price` | Amount in EUR, negotiable flag (`VB`), and a type: `fixed`, `negotiable`, `giveaway` (Zu verschenken) or `other` |
| `location` | Postal code, district or town, distance in km on radius searches, and the raw text |
| `postedAt`, `postedDate`, `postedTime` | The site's own label (`Heute, 19:57`) plus an ISO date resolved in German time |
| `sellerType` | `private` or `commercial` (from the PRO badge) |
| `sellerName`, `sellerProfileUrl` | Shop name and profile link for commercial sellers |
| `shippingPossible`, `directBuy`, `tags` | Versand möglich, Direkt kaufen and any other listing tags |
| `imageUrl`, `imageCount` | First photo URL and how many photos the listing has |
| `promoted` | `true` when the listing is a paid top ad on the results page |
| `description` | The listing's preview text |

### Who uses it

- **Resellers and flippers** watching a search around their city so they can message the seller minutes after a good listing goes up.
- **Dealers** (bikes, phones, furniture, cars and parts) sourcing private-seller stock with `sellerType: private` and a price ceiling.
- **Price and market research**: pull thousands of asking prices for a product across Germany.
- **Agents and pipelines** that need German classifieds as structured JSON.

### Input examples

Bikes in Berlin, private sellers only, between 50 and 800 euros:

```json
{
  "query": ["fahrrad"],
  "location": "Berlin",
  "radiusKm": "10",
  "sellerType": "private",
  "priceMin": 50,
  "priceMax": 800,
  "maxResults": 200
}
````

Several searches at once, all of Germany, one category:

```json
{
  "query": ["iphone 14", "iphone 15"],
  "category": "multimedia-elektronik",
  "priceMax": 600,
  "maxResults": 500
}
```

A new-listing alert feed: schedule this every 10 or 15 minutes and only fresh listings come back, posted to Slack:

```json
{
  "query": ["e-bike"],
  "location": "München",
  "radiusKm": "20",
  "priceMax": 1500,
  "monitorMode": true,
  "monitorName": "muc-ebikes",
  "webhookUrl": "https://hooks.slack.com/services/XXX/YYY/ZZZ"
}
```

The first monitor run returns the current listings and remembers them; every run after that returns only new ones. Use a different `monitorName` per saved search so they do not share memory.

### Output sample

```json
{
  "adId": "3455857850",
  "title": "MTB Specialized Rockhopper Expert",
  "url": "https://www.kleinanzeigen.de/s-anzeige/mtb-specialized-rockhopper-expert/3455857850-217-3480",
  "description": "Zum Verkauf steht dieses MTB der Marke Specialized...",
  "price": { "value": 400, "currency": "EUR", "negotiable": true, "type": "negotiable", "label": "400 € VB" },
  "location": { "zip": "12435", "area": "Treptow", "distanceKm": 7, "raw": "12435 Treptow (7 km)" },
  "postedAt": "Heute, 22:31",
  "postedDate": "2026-07-10",
  "postedTime": "22:31",
  "sellerType": "private",
  "shippingPossible": false,
  "directBuy": false,
  "imageUrl": "https://img.kleinanzeigen.de/api/v1/prod-ads/images/d8/d8182463.jpg",
  "imageCount": 9,
  "promoted": false,
  "searchQuery": "fahrrad",
  "searchLocation": "Berlin",
  "source": "kleinanzeigen.de"
}
```

### Pricing

You pay per listing returned, and platform usage is included in the price. No subscription, no compute or proxy line on your bill, and a search that finds nothing costs only the start fee.

| Event | Price |
| --- | --- |
| Actor start | $0.001 per run |
| Listing scraped (normal mode) | $0.002 per listing ($2 per 1,000) |
| New listing found (monitor mode) | $0.005 per new listing |
| Digest sent (monitor mode, webhook) | $0.03 per digest |

Monitor math for a scheduled watch: a quiet check costs $0.001, and you only ever pay the per-listing price once per listing, the moment it first appears.

### FAQ

**Does it need a proxy or a login?** No. Kleinanzeigen serves these pages directly and the actor runs without any proxy, browser or account.

**Does it return seller phone numbers?** No. Kleinanzeigen keeps contact behind a login, so no scraper can honestly promise phone numbers from the public site. You get the listing, its price, location, photos and the shop profile for commercial sellers.

**How do locations work?** Pass any German city, district or state as plain text (`"location": "Köln"`), pick a radius, and the actor resolves it through the site's own location search. If you already know Kleinanzeigen's numeric location id you can pass that instead.

**What are promoted listings?** Paid top ads that Kleinanzeigen pins above the results. They are real listings and are included, flagged with `promoted: true`, so you can filter them out if you only want the organic newest-first feed.

**How deep can one search go?** Kleinanzeigen serves at most 50 result pages per search, about 1,250 listings. Narrow searches with a category, price band or radius go deeper into the long tail. In monitor mode depth barely matters, because scheduled runs keep picking up everything new at the top.

**Can I watch several searches with one monitor?** Yes, put several terms in `query`. Give each independent watch its own `monitorName`.

### For AI agents and MCP

Every record is flat, typed JSON, so the actor drops straight into an agent tool or MCP server. Monitor mode gives agents a cheap polling primitive: call it on a schedule and act only when something new comes back.

***

### Something missing?

If you need an extra field, a filter, or a different output, open an issue on this Actor and describe it. I read every request and small additions usually ship within days. More marketplace scrapers and monitors are on [my profile](https://apify.com/tagadanar).

*Kleinanzeigen scraper, eBay Kleinanzeigen API, scrape kleinanzeigen.de, new listing alerts, Kleinanzeigen monitor, German classifieds data, reselling arbitrage feed, second-hand market Germany, price research, fahrrad iphone möbel auto.*

# Actor input Schema

## `query` (type: `array`):

One search per entry, exactly what you would type into the Kleinanzeigen search box, e.g. <code>fahrrad</code>, <code>iphone 13</code>, <code>küchenmaschine</code>.

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

Optional. A German city, district or state, e.g. <code>Berlin</code>, <code>München</code>, <code>Nordrhein-Westfalen</code>. Leave empty to search all of Germany.

## `radiusKm` (type: `string`):

How far around the chosen city to search. Ignored without a location.

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

Restrict the search to one Kleinanzeigen top-level category.

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

Only private sellers, only commercial sellers, or both. Resellers hunting bargains usually want private only.

## `priceMin` (type: `integer`):

Optional. Only return listings priced at or above this amount.

## `priceMax` (type: `integer`):

Optional. Only return listings priced at or below this amount.

## `maxResults` (type: `integer`):

Total listings to return across all searches. Results come newest first; Kleinanzeigen serves at most 50 pages (about 1,250 listings) per search.

## `monitorMode` (type: `boolean`):

Remember listings seen on previous runs and return only new ones. Run it on a schedule to be first to every fresh listing; a run with nothing new costs almost nothing.

## `monitorName` (type: `string`):

Label for the remembered-listings set. Use different names to track different searches independently.

## `webhookUrl` (type: `string`):

Optional. In monitor mode, new listings are posted here as a digest (Slack incoming webhook or any endpoint accepting JSON).

## Actor input object example

```json
{
  "query": [
    "fahrrad"
  ],
  "radiusKm": "0",
  "category": "all",
  "sellerType": "all",
  "maxResults": 25,
  "monitorMode": false,
  "monitorName": "default"
}
```

# Actor output Schema

## `listings` (type: `string`):

One item per listing in the default dataset.

# 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 = {
    "query": [
        "fahrrad"
    ],
    "maxResults": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("tagadanar/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 = {
    "query": ["fahrrad"],
    "maxResults": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("tagadanar/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 '{
  "query": [
    "fahrrad"
  ],
  "maxResults": 25
}' |
apify call tagadanar/kleinanzeigen-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Kleinanzeigen Scraper 🇩🇪 (new-listing alerts, no login)",
        "description": "Search kleinanzeigen.de and get title, price, location, seller type, posting time and photos, newest first. Monitor mode remembers past runs and returns only new listings, so a schedule turns it into an alert feed for fresh deals. Fixed price per listing, platform usage included.",
        "version": "0.1",
        "x-build-id": "JflkompaDnIHM4fty"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/tagadanar~kleinanzeigen-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-tagadanar-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/tagadanar~kleinanzeigen-scraper/runs": {
            "post": {
                "operationId": "runs-sync-tagadanar-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/tagadanar~kleinanzeigen-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-tagadanar-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",
                "required": [
                    "query"
                ],
                "properties": {
                    "query": {
                        "title": "Search terms",
                        "minItems": 1,
                        "type": "array",
                        "description": "One search per entry, exactly what you would type into the Kleinanzeigen search box, e.g. <code>fahrrad</code>, <code>iphone 13</code>, <code>küchenmaschine</code>.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "location": {
                        "title": "City or region",
                        "type": "string",
                        "description": "Optional. A German city, district or state, e.g. <code>Berlin</code>, <code>München</code>, <code>Nordrhein-Westfalen</code>. Leave empty to search all of Germany."
                    },
                    "radiusKm": {
                        "title": "Search radius",
                        "enum": [
                            "0",
                            "5",
                            "10",
                            "20",
                            "30",
                            "50",
                            "100",
                            "200"
                        ],
                        "type": "string",
                        "description": "How far around the chosen city to search. Ignored without a location.",
                        "default": "0"
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "all",
                            "auto-rad-boot",
                            "dienstleistungen",
                            "eintrittskarten-tickets",
                            "familie-kind-baby",
                            "freizeit-nachbarschaft",
                            "haus-garten",
                            "haustiere",
                            "immobilien",
                            "jobs",
                            "mode-beauty",
                            "multimedia-elektronik",
                            "musik-film-buecher",
                            "nachbarschaftshilfe",
                            "unterricht-kurse",
                            "zu-verschenken-tauschen"
                        ],
                        "type": "string",
                        "description": "Restrict the search to one Kleinanzeigen top-level category.",
                        "default": "all"
                    },
                    "sellerType": {
                        "title": "Seller type",
                        "enum": [
                            "all",
                            "private",
                            "commercial"
                        ],
                        "type": "string",
                        "description": "Only private sellers, only commercial sellers, or both. Resellers hunting bargains usually want private only.",
                        "default": "all"
                    },
                    "priceMin": {
                        "title": "Minimum price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Optional. Only return listings priced at or above this amount."
                    },
                    "priceMax": {
                        "title": "Maximum price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Optional. Only return listings priced at or below this amount."
                    },
                    "maxResults": {
                        "title": "Max listings",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Total listings to return across all searches. Results come newest first; Kleinanzeigen serves at most 50 pages (about 1,250 listings) per search.",
                        "default": 40
                    },
                    "monitorMode": {
                        "title": "Monitor mode (only new listings)",
                        "type": "boolean",
                        "description": "Remember listings seen on previous runs and return only new ones. Run it on a schedule to be first to every fresh listing; a run with nothing new costs almost nothing.",
                        "default": false
                    },
                    "monitorName": {
                        "title": "Monitor name",
                        "type": "string",
                        "description": "Label for the remembered-listings set. Use different names to track different searches independently.",
                        "default": "default"
                    },
                    "webhookUrl": {
                        "title": "Webhook / Slack URL",
                        "type": "string",
                        "description": "Optional. In monitor mode, new listings are posted here as a digest (Slack incoming webhook or any endpoint accepting JSON)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
