# Polovni Automobili Scraper - Serbian Car Listings (`studio-amba/polovni-automobili-scraper`) Actor

Scrape car listings from PoslovniAutomobili.com, Serbia's largest used car marketplace with 10M+ monthly visits. Extract prices, specs, mileage, fuel type, transmission, seller info, and images. Filter by make, model, year, price. No login required.

- **URL**: https://apify.com/studio-amba/polovni-automobili-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

### What does Polovni Automobili Scraper do?

**Polovni Automobili Scraper** extracts car listing data from [PlovniAutomobili.com](https://www.polovniautomobili.com), Serbia's largest online car marketplace with over **10 million monthly visits** and hundreds of thousands of active listings. No login or cookies required.

Use it to collect structured used car data via the Apify platform with full **API access, scheduling, integrations**, and proxy rotation.

### Why use Polovni Automobili Scraper?

- **Market research** — Analyze Serbian used car prices, compare by make, model, year, and mileage
- **Price monitoring** — Track price changes for specific vehicles over time with scheduled runs
- **Dealer intelligence** — Study dealer inventory, pricing strategies, and listing volumes
- **Data analytics** — Build datasets for automotive market analysis in the Western Balkans
- **Lead generation** — Find cars matching specific criteria across Serbia
- **Academic research** — Study depreciation curves, pricing patterns, and market trends in emerging EU markets
- **Cross-border arbitrage** — Compare Serbian car prices with other European markets

### How to scrape Polovni Automobili data

1. Go to this actor's page on the [Apify Store](https://apify.com/store).
2. Click **Try for free** to open it in Apify Console.
3. Configure your search: enter a make (e.g., "volkswagen"), model, year range, price range, or fuel type.
4. Set the maximum number of results you need (default: 100).
5. Click **Start** and wait for the run to finish.
6. Download your data from the **Output** tab in JSON, CSV, Excel, or other formats.

You can also schedule regular runs, set up webhooks for real-time notifications, or integrate the results directly into your application using the [Apify API](https://docs.apify.com/api).

### Input

| Field | Type | Description |
|-------|------|-------------|
| `searchQuery` | string | Free text search (e.g., "Golf GTI", "Audi A4"). Defaults to "Golf" if no filters set. |
| `make` | string | Car manufacturer slug (e.g., volkswagen, bmw, audi, mercedes-benz, opel, fiat) |
| `model` | string | Car model text filter (e.g., Golf, 320, A4) |
| `yearFrom` / `yearTo` | integer | First registration year range (e.g., 2015-2024) |
| `priceFrom` / `priceTo` | integer | Price range in EUR |
| `mileageFrom` / `mileageTo` | integer | Mileage range in km |
| `fuelType` | string | benzin (Petrol), dizel (Diesel), tng (LPG), hibrid (Hybrid), elektro (Electric) |
| `sort` | string | Sort: basic (relevance), renewDate_desc (newest), price_asc, price_desc |
| `maxResults` | integer | Max listings to return (default: 100, max: 5000) |
| `proxyConfiguration` | object | Proxy settings — residential proxies recommended |

### Output

Each car listing includes the following fields. You can download the dataset in JSON, CSV, Excel, or connect via API.

```json
{
    "listingTitle": "Volkswagen Golf 7 1.6 TDI Comfortline",
    "make": "Volkswagen",
    "model": "Golf 7 1.6 TDI Comfortline",
    "year": 2019,
    "price": 13500,
    "currency": "EUR",
    "mileage": 142000,
    "fuelType": "Dizel",
    "transmission": "Manuelni",
    "engineSize": "1598 cm3",
    "power": "85 kW/116 KS",
    "bodyType": "Hečbek",
    "location": "Beograd",
    "sellerType": "Dealer",
    "imageUrl": "https://www.polovniautomobili.com/auto-oglasi/...",
    "url": "https://www.polovniautomobili.com/auto-oglas/12345678",
    "scrapedAt": "2026-06-09T12:00:00.000Z"
}
````

### Data fields

| Field | Description | Example |
|-------|-------------|---------|
| `listingTitle` | Full listing title | Volkswagen Golf 7 1.6 TDI |
| `make` | Manufacturer | Volkswagen, BMW, Audi |
| `model` | Model name | Golf, 320, A4, Clio |
| `year` | Registration year | 2019 |
| `price` | Listing price (numeric) | 13500 |
| `currency` | Price currency | EUR or RSD |
| `mileage` | Kilometers driven | 142000 |
| `fuelType` | Fuel type | Benzin, Dizel, TNG, Hibrid, Elektro |
| `transmission` | Gearbox type | Manuelni, Automatski, Poluautomatski |
| `engineSize` | Engine displacement | 1598 cm3 |
| `power` | Engine power | 85 kW/116 KS |
| `bodyType` | Body type | Limuzina, Hečbek, Karavan, SUV |
| `location` | Seller location | Beograd, Novi Sad, Niš |
| `sellerType` | Seller category | Private or Dealer |
| `imageUrl` | Main car photo URL | https://... |
| `url` | Full listing URL | https://www.polovniautomobili.com/auto-oglas/... |
| `scrapedAt` | Collection timestamp | 2026-06-09T12:00:00.000Z |

### How much does it cost to scrape Polovni Automobili?

Polovni Automobili Scraper uses Playwright (headless browser) for reliable access:

- **50 results** cost approximately **$0.10** in Apify platform credits
- **100 results** cost approximately **$0.15**
- **500 results** cost approximately **$0.50**

The Apify Free plan includes $5 of monthly credits, which is enough for thousands of car listings.

### Tips and advanced options

- **Use make for precision** — Set the `make` field (e.g., "volkswagen") for targeted results instead of free text search.
- **Combine filters** — Narrow results with price, mileage, year, and fuel type filters for focused datasets.
- **Sort by price** — Set `sort` to "price\_asc" or "price\_desc" to get cheapest or most expensive listings first.
- **Schedule runs** — Set up daily or weekly scraping to track price changes over time.
- **Empty input works** — Running with empty input `{}` defaults to searching for "Golf" to ensure results are returned.
- **Use residential proxies** — For best reliability, use Apify residential proxies (pre-configured by default).
- **Cross-market analysis** — Combine with our AutoScout24 or LaCentrale scrapers to compare prices across European markets.

### Supported vehicle categories

Polovni Automobili covers passenger cars as the primary category on the search page. The scraper focuses on the main car listings search (`auto-oglasi/pretraga`) which includes:

- All major European and Asian car manufacturers
- Both private sellers and professional dealers
- New and used vehicles
- Prices in EUR and RSD (Serbian Dinar)

### FAQ and support

**Is it legal to scrape Polovni Automobili?**
This scraper accesses only publicly available data that any visitor can see in their browser. It does not require login, bypass authentication, or access private data. Always review and comply with the target website's Terms of Service before use.

**Does this scraper need login or cookies?**
No. Polovni Automobili Scraper works without any login credentials, cookies, or account setup. Just configure your search filters and run.

**What about anti-bot protection?**
The scraper uses Playwright (headless browser) with residential proxies to reliably access listing pages. This handles standard anti-bot measures without any extra configuration.

**Can I scrape specific makes and models?**
Yes. Use the `make` field with the manufacturer slug (e.g., "volkswagen", "bmw", "audi") and optionally the `model` field for further filtering.

**I found a bug or need help**
Please submit an issue on the [Issues tab](https://console.apify.com/actors) and we will respond quickly. For custom scraping solutions, reach out via the same channel.

### About Polovni Automobili

Polovni Automobili (literally "used cars" in Serbian) is the dominant online car marketplace in Serbia, with over 10 million monthly visits. It is the go-to platform for buying and selling vehicles in Serbia and the broader Western Balkans region. The site features listings from both private sellers and professional dealers, with prices typically listed in EUR.

# Actor input Schema

## `searchQuery` (type: `string`):

Free text search for car listings (e.g., 'Golf GTI', 'Audi A4'). Leave empty to browse all listings with other filters.

## `make` (type: `string`):

Car manufacturer slug as used in URL (e.g., volkswagen, bmw, audi, mercedes-benz, opel, fiat, renault, peugeot, toyota, ford).

## `model` (type: `string`):

Car model text filter. Filters results by model name visible in listing titles.

## `yearFrom` (type: `integer`):

Minimum first registration year (e.g., 2015).

## `yearTo` (type: `integer`):

Maximum first registration year (e.g., 2024).

## `priceFrom` (type: `integer`):

Minimum price in EUR.

## `priceTo` (type: `integer`):

Maximum price in EUR.

## `mileageFrom` (type: `integer`):

Minimum mileage in kilometers.

## `mileageTo` (type: `integer`):

Maximum mileage in kilometers.

## `fuelType` (type: `string`):

Filter by fuel type.

## `sort` (type: `string`):

Sort results by the selected criteria.

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

Maximum number of car listings to return.

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

Proxy settings. Residential proxies recommended for reliable access.

## Actor input object example

```json
{
  "searchQuery": "Golf",
  "sort": "basic",
  "maxResults": 50,
  "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 = {
    "searchQuery": "Golf",
    "maxResults": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/polovni-automobili-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 = {
    "searchQuery": "Golf",
    "maxResults": 50,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/polovni-automobili-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 '{
  "searchQuery": "Golf",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call studio-amba/polovni-automobili-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Polovni Automobili Scraper - Serbian Car Listings",
        "description": "Scrape car listings from PoslovniAutomobili.com, Serbia's largest used car marketplace with 10M+ monthly visits. Extract prices, specs, mileage, fuel type, transmission, seller info, and images. Filter by make, model, year, price. No login required.",
        "version": "0.1",
        "x-build-id": "0hutyB1sahGXjHbht"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/studio-amba~polovni-automobili-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-studio-amba-polovni-automobili-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/studio-amba~polovni-automobili-scraper/runs": {
            "post": {
                "operationId": "runs-sync-studio-amba-polovni-automobili-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/studio-amba~polovni-automobili-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-studio-amba-polovni-automobili-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": {
                    "searchQuery": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "Free text search for car listings (e.g., 'Golf GTI', 'Audi A4'). Leave empty to browse all listings with other filters."
                    },
                    "make": {
                        "title": "Make (Brand)",
                        "type": "string",
                        "description": "Car manufacturer slug as used in URL (e.g., volkswagen, bmw, audi, mercedes-benz, opel, fiat, renault, peugeot, toyota, ford)."
                    },
                    "model": {
                        "title": "Model",
                        "type": "string",
                        "description": "Car model text filter. Filters results by model name visible in listing titles."
                    },
                    "yearFrom": {
                        "title": "Year From",
                        "minimum": 1950,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Minimum first registration year (e.g., 2015)."
                    },
                    "yearTo": {
                        "title": "Year To",
                        "minimum": 1950,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Maximum first registration year (e.g., 2024)."
                    },
                    "priceFrom": {
                        "title": "Price From (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price in EUR."
                    },
                    "priceTo": {
                        "title": "Price To (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price in EUR."
                    },
                    "mileageFrom": {
                        "title": "Mileage From (km)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum mileage in kilometers."
                    },
                    "mileageTo": {
                        "title": "Mileage To (km)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum mileage in kilometers."
                    },
                    "fuelType": {
                        "title": "Fuel Type",
                        "enum": [
                            "",
                            "benzin",
                            "dizel",
                            "tng",
                            "hibrid",
                            "elektro"
                        ],
                        "type": "string",
                        "description": "Filter by fuel type."
                    },
                    "sort": {
                        "title": "Sort Order",
                        "enum": [
                            "basic",
                            "renewDate_desc",
                            "price_asc",
                            "price_desc"
                        ],
                        "type": "string",
                        "description": "Sort results by the selected criteria.",
                        "default": "basic"
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of car listings to return.",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Residential proxies recommended for reliable access."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
