# Argenprop Property Scraper (`mfapitools/argenprop-property-scraper`) Actor

Scrape real estate listings — propiedades, inmuebles — from Argenprop.com, Argentina's largest property portal. Search by property type (departamento, casa, PH), operation (venta/alquiler), bedrooms, and price range. Returns structured listing data with prices, features, and contact info.

- **URL**: https://apify.com/mfapitools/argenprop-property-scraper.md
- **Developed by:** [Mariano Ferreras](https://apify.com/mfapitools) (community)
- **Categories:** Real estate, Lead generation, Automation
- **Stats:** 1 total users, 1 monthly users, 40.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 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.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## Argenprop Property Scraper

Scrape real estate listings from **Argenprop.com** — a major Argentine property portal with ~228K active listings (July 2026). There are 12+ ZonaProp scrapers on Apify Store (ZonaProp is Argenprop's sister portal under Navent), and as of July 2026 a store search for "argenprop" returned no other Argenprop-specific scraper — but note those ZonaProp actors are far more established than this one (ocrad's has 66 users, ecomscrape's 33), and they cover a different portal's listings, not Argenprop's.

### Use cases

- **Market research**: Track property prices, supply, and trends across Argentine neighborhoods
- **Price comparison**: Compare listing prices by property type, location, and features
- **Investment analysis**: Monitor the Argentine real estate market (USD and ARS prices)
- **Real estate lead generation**: Collect agent contact info and listing details
- **Rental market analysis**: Separate rental vs. sale market dynamics

### Input

Provide search URLs (e.g. `/departamentos`, `/departamentos/alquiler/2-ambientes`) or use the quick filters:

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `searchUrls` | `string[]` | `["/departamentos"]` | Search page paths on Argenprop |
| `propertyType` | `enum` | `departamento` | `departamento`, `casa`, `ph`, `oficina`, `local`, `terreno`, `cochera` |
| `operationType` | `enum` | `todos` | `venta`, `alquiler`, `alquiler-temporal`, `todos` |
| `minBedrooms` | `number` | `0` | Minimum bedrooms (0 = any) |
| `maxBedrooms` | `number` | `0` | Maximum bedrooms (0 = no max) |
| `minPrice` | `number` | `0` | Minimum price (0 = no minimum) |
| `maxPrice` | `number` | `0` | Maximum price (0 = no max) |
| `currency` | `enum` | `any` | `USD`, `ARS`, `any` |
| `maxListings` | `number` | `200` | Max listings to collect |
| `maxDetailPages` | `number` | `0` | Enrich with detail page data (0 = search data only) |
| `useResidentialProxy` | `boolean` | `false` | Use residential proxies for high-volume runs |
| `zeroYieldAbortThreshold` | `number` | `3` | Abort after N consecutive empty pages |
| `maxRunSeconds` | `number` | `0` | Soft deadline (0 = disabled) |

### Output

Each listing record contains:

| Field | Type | Description |
|-------|------|-------------|
| `type` | `string` | Always `"listing"` |
| `listingId` | `string` | Argenprop internal ID |
| `propertyType` | `string` | `"Departamento"`, `"Casa"`, `"PH"`, etc. |
| `operationType` | `string` | `"Venta"` or `"Alquiler"` |
| `currency` | `string` | `"USD"` or `"ARS"` |
| `priceAmount` | `number` | Numeric price |
| `expensesAmount` | `number` | HOA/condo fees (expensas) |
| `address` | `string` | Street address |
| `fullAddress` | `string` | Address with neighborhood |
| `neighborhood` | `string` | Barrio (neighborhood) |
| `bedrooms` | `number` | Number of bedrooms |
| `bathrooms` | `number` | Number of bathrooms |
| `coveredAreaM2` | `number` | Covered area in m² |
| `totalAreaM2` | `number` | Total area in m² |
| `title` | `string` | Listing title |
| `description` | `string` | Full description |
| `agentId` | `string` | Agent/advertiser ID |
| `amenities` | `string[]` | Amenities (detail enrichment only) |
| `photos` | `string[]` | Photo URLs (detail enrichment only) |
| `scrapedAt` | `string` | ISO 8601 timestamp |

### Pricing

Pay-per-event (PPE):

| Event | Price | Description |
|-------|-------|-------------|
| `listing-scraped` | $0.001 | Per listing extracted from search |
| `listing-detailed` | $0.002 | Per detail page enrichment |
| `apify-actor-start` | $0.001 | Run initialization (2048MB → 2×) |

### Example: Search for 2-bedroom apartments for rent

```json
{
  "searchUrls": ["/departamentos/alquiler/2-ambientes"],
  "maxListings": 50,
  "useResidentialProxy": true
}
````

### Example: Search for houses for sale in USD

```json
{
  "propertyType": "casa",
  "operationType": "venta",
  "currency": "USD",
  "maxListings": 100
}
```

### Limitations

- **Argenprop only**: This actor scrapes Argenprop.com. It does not cover ZonaProp, MercadoLibre Inmuebles, or other Argentine property portals.
- **Search page data vs. detail enrichment**: Search page data includes basic info (price, area, bedrooms, location). For full amenity lists and photos, enable `maxDetailPages` (costs extra).
- **AWS WAF**: Argenprop uses AWS WAF at the edge. Datacenter proxies work for moderate volumes; residential proxies are recommended for high-volume runs.
- **robots.txt**: Argenprop disallows `User-agent: *` (entire site). This actor scrapes publicly visible listing data shown to all visitors without bypassing authentication.

### Spanish/English

| Spanish | English |
|---------|---------|
| Departamento | Apartment |
| Casa | House |
| PH | Townhouse / Duplex |
| Venta | Sale |
| Alquiler | Rental |
| Alquiler temporal | Short-term rental |
| Expensas | HOA / Condo fees |
| m² cubiertos | Covered area |
| m² totales | Total area |
| Dormitorios | Bedrooms |
| Baños | Bathrooms |
| Ambientes | Total rooms |
| Barrio | Neighborhood |
| A Estrenar | Brand new |

### Technical details

- **Crawler**: CheerioCrawler (server-rendered HTML extraction)
- **Proxy**: Datacenter (default) or Residential (recommended for high volume)
- **Pagination**: Automatic via `?pagina-N` format
- **Detail enrichment**: Optional second phase with separate CheerioCrawler

# Actor input Schema

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

List of Argenprop search page paths, e.g. "/departamentos", "/departamentos/alquiler", "/departamentos/3-ambientes". Leave empty to use the quick filters below.

## `propertyType` (type: `string`):

Type of property to search for (used when searchUrls is empty).

## `operationType` (type: `string`):

Sale or rental (used when searchUrls is empty).

## `minBedrooms` (type: `integer`):

Minimum number of bedrooms. 0 means 'no minimum' (do NOT set 0 to mean 'studio only' — there is no way to filter for exactly 0-bedroom studios with this field). Example: 2 = only listings with 2+ bedrooms.

## `maxBedrooms` (type: `integer`):

Maximum number of bedrooms. 0 means 'no maximum'. Example: 3 = only listings with 3 or fewer bedrooms.

## `minPrice` (type: `integer`):

Minimum price (0 = no minimum).

## `maxPrice` (type: `integer`):

Maximum price (0 = no max).

## `currency` (type: `string`):

Filter by currency: USD, ARS, or any.

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

Maximum number of listings to collect from search pages. You are charged per listing delivered, so this directly caps run cost. Default 50 (raise it deliberately for bulk collection, e.g. 500-2000 for a full-market sweep).

## `maxDetailPages` (type: `integer`):

Enrich listings with detail page data (amenities, photos, floor number). 0 = search page data only (faster, cheaper).

## `useResidentialProxy` (type: `boolean`):

Use residential proxies. Recommended for high-volume runs. Argenprop uses AWS WAF that may challenge datacenter IPs under sustained load.

## `zeroYieldAbortThreshold` (type: `integer`):

If the first N processed pages produce no parseable listings, abort. Set to 0 to disable.

## `maxRunSeconds` (type: `integer`):

Soft deadline in seconds. 0 = disabled. If set, stops cleanly at the deadline with whatever was collected.

## Actor input object example

```json
{
  "searchUrls": [
    "/departamentos"
  ],
  "propertyType": "departamento",
  "operationType": "todos",
  "minBedrooms": 0,
  "maxBedrooms": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "currency": "any",
  "maxListings": 50,
  "maxDetailPages": 0,
  "useResidentialProxy": false,
  "zeroYieldAbortThreshold": 3,
  "maxRunSeconds": 0
}
```

# Actor output Schema

## `listings` (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 = {
    "searchUrls": [
        "/departamentos"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("mfapitools/argenprop-property-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": ["/departamentos"] }

# Run the Actor and wait for it to finish
run = client.actor("mfapitools/argenprop-property-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": [
    "/departamentos"
  ]
}' |
apify call mfapitools/argenprop-property-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Argenprop Property Scraper",
        "description": "Scrape real estate listings — propiedades, inmuebles — from Argenprop.com, Argentina's largest property portal. Search by property type (departamento, casa, PH), operation (venta/alquiler), bedrooms, and price range. Returns structured listing data with prices, features, and contact info.",
        "version": "0.1",
        "x-build-id": "r8aUh25FC5mueBuaS"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/mfapitools~argenprop-property-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-mfapitools-argenprop-property-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/mfapitools~argenprop-property-scraper/runs": {
            "post": {
                "operationId": "runs-sync-mfapitools-argenprop-property-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/mfapitools~argenprop-property-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-mfapitools-argenprop-property-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 page URLs",
                        "type": "array",
                        "description": "List of Argenprop search page paths, e.g. \"/departamentos\", \"/departamentos/alquiler\", \"/departamentos/3-ambientes\". Leave empty to use the quick filters below.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "propertyType": {
                        "title": "Property type",
                        "enum": [
                            "departamento",
                            "casa",
                            "ph",
                            "oficina",
                            "local",
                            "terreno",
                            "cochera"
                        ],
                        "type": "string",
                        "description": "Type of property to search for (used when searchUrls is empty).",
                        "default": "departamento"
                    },
                    "operationType": {
                        "title": "Operation type",
                        "enum": [
                            "venta",
                            "alquiler",
                            "alquiler-temporal",
                            "todos"
                        ],
                        "type": "string",
                        "description": "Sale or rental (used when searchUrls is empty).",
                        "default": "todos"
                    },
                    "minBedrooms": {
                        "title": "Minimum bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Minimum number of bedrooms. 0 means 'no minimum' (do NOT set 0 to mean 'studio only' — there is no way to filter for exactly 0-bedroom studios with this field). Example: 2 = only listings with 2+ bedrooms.",
                        "default": 0
                    },
                    "maxBedrooms": {
                        "title": "Maximum bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Maximum number of bedrooms. 0 means 'no maximum'. Example: 3 = only listings with 3 or fewer bedrooms.",
                        "default": 0
                    },
                    "minPrice": {
                        "title": "Minimum price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price (0 = no minimum).",
                        "default": 0
                    },
                    "maxPrice": {
                        "title": "Maximum price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price (0 = no max).",
                        "default": 0
                    },
                    "currency": {
                        "title": "Currency",
                        "enum": [
                            "USD",
                            "ARS",
                            "any"
                        ],
                        "type": "string",
                        "description": "Filter by currency: USD, ARS, or any.",
                        "default": "any"
                    },
                    "maxListings": {
                        "title": "Max listings",
                        "minimum": 1,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "Maximum number of listings to collect from search pages. You are charged per listing delivered, so this directly caps run cost. Default 50 (raise it deliberately for bulk collection, e.g. 500-2000 for a full-market sweep).",
                        "default": 50
                    },
                    "maxDetailPages": {
                        "title": "Max detail pages to enrich",
                        "minimum": 0,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Enrich listings with detail page data (amenities, photos, floor number). 0 = search page data only (faster, cheaper).",
                        "default": 0
                    },
                    "useResidentialProxy": {
                        "title": "Use residential proxies",
                        "type": "boolean",
                        "description": "Use residential proxies. Recommended for high-volume runs. Argenprop uses AWS WAF that may challenge datacenter IPs under sustained load.",
                        "default": false
                    },
                    "zeroYieldAbortThreshold": {
                        "title": "Zero-yield abort threshold",
                        "minimum": 0,
                        "maximum": 50,
                        "type": "integer",
                        "description": "If the first N processed pages produce no parseable listings, abort. Set to 0 to disable.",
                        "default": 3
                    },
                    "maxRunSeconds": {
                        "title": "Max run duration (seconds)",
                        "minimum": 0,
                        "maximum": 3600,
                        "type": "integer",
                        "description": "Soft deadline in seconds. 0 = disabled. If set, stops cleanly at the deadline with whatever was collected.",
                        "default": 0
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
