# Pige Immo FR: LBC + SeLoger + PAP + Bien'ici Multi-Source (`dltik/pige-immo-fr-scraper`) Actor

Multi-source French real-estate pige: Leboncoin, SeLoger, Bien'ici, PAP, Logic-immo in one run. Auto-deduplication, ADEME DPE enrichment, GPS, price per m², owner-vs-agency flag. Filter by transaction, city, type, price, surface. For pige software, agents, hunters, marchands. $5/1K listings.

- **URL**: https://apify.com/dltik/pige-immo-fr-scraper.md
- **Developed by:** [dltik](https://apify.com/dltik) (community)
- **Categories:** Real estate, Business, Lead generation
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## Pige Immo FR Scraper — Multi-Source French Real Estate (LBC + SeLoger + PAP + Bien'ici)

> The first **multi-source pige immobilière scraper** for France on Apify. Scrape **Leboncoin, SeLoger, PAP, Bien'ici, Logic-immo** in one run. **Cross-source deduplication** of the same property across sites, **auto-enrichment of missing DPE** from the official ADEME database, GPS, price/m², owner-vs-agency flag. **$0.005 per listing**.

⭐ **Bookmark this Pige Immo FR Scraper** — Apify ranks actors by bookmarks, so it directly helps the visibility of this scraper on the Apify Store.

### What is the Pige Immo FR Scraper?

The **Pige Immo FR Scraper** is the first Apify actor that aggregates 5 major French real-estate listing sources in a single run: [Leboncoin](https://www.leboncoin.fr/), [SeLoger](https://www.seloger.com/), [PAP (de particulier à particulier)](https://www.pap.fr/), [Bien'ici](https://www.bienici.com/), [Logic-immo](https://www.logic-immo.com/). It deduplicates the same property across sites (matching on address, surface, price, photos), auto-fills missing DPE from the official ADEME database, computes price per m², and flags owner-listed vs agency-listed.

Built for French real-estate agents doing pige (prospection) — the daily hunt for new listings worth contacting. Replaces several SaaS pige tools that charge €100-300/month.

### Use cases

- **Real-estate agent pige** — daily refresh of new listings in your zone, deduplicated across sites.
- **Market analysis** — count new listings per arrondissement per week per type.
- **Owner-direct prospecting** — filter `owner` listings (the high-margin contacts for agents).
- **Price alerting** — get notified when a new listing matches `2-rooms < €350K in Paris 11`.
- **Comparable computation** — pull all active listings in a 1km radius to price your own.
- **Investment screening** — find E/F/G DPE properties (renovation potential) at low €/m².

### Input

```json
{
  "transaction": "rent",
  "type": ["apartment"],
  "city": "Paris 11e",
  "minPrice": 1000,
  "maxPrice": 2500,
  "minSurface": 30,
  "sources": ["leboncoin", "seloger", "pap"],
  "limit": 200
}
````

### Output

```json
{
  "id": "pige-2026-04-30-12345",
  "source": "leboncoin",
  "duplicate_of": null,
  "transaction": "rent",
  "type": "apartment",
  "title": "Charmant 2 pièces - Bastille",
  "price_eur": 1850,
  "price_per_m2_eur": 51.4,
  "surface_m2": 36,
  "rooms": 2,
  "address": "Rue Example, 75011 Paris",
  "latitude": 48.8584,
  "longitude": 2.3712,
  "is_owner": true,
  "dpe_class": "D",
  "ges_class": "C",
  "phone": "+33 6 12 34 56 78",
  "listing_url": "https://www.leboncoin.fr/...",
  "scraped_at": "2026-04-30T12:00:00Z"
}
```

### Pricing

**PAY\_PER\_EVENT — $0.005 per listing** (= $5 per 1,000). Cross-source dedup is free. ADEME DPE auto-enrichment is free.

### FAQ — French real-estate aggregator alternatives

**vs SaaS pige tools (Hektor, Adapt'immo)?** Those cost €100-300/month + per-listing fees. This actor is pay-as-you-go at $5/1K listings, integrate-as-you-go via the Apify API.

**Cross-source dedup — how reliable?** ~90% precision on apartments (we use address + surface + price + first photo hash). Manual review still recommended for high-stakes runs.

**Why ADEME enrichment?** Many listings don't show DPE. We auto-match by address against the official ADEME database (which has 25M+ DPE records).

**Does it run continuously?** Yes — schedule it daily on Apify, write to a versioned dataset, build alerts on new listings.

***

⭐ **Found this useful? Bookmark this Pige Immo FR Scraper** — it's the strongest signal for Apify Store ranking.

#### Related actors

- [ADEME DPE Scraper](https://apify.com/dltik/ademe-dpe-scraper) — direct DPE database access
- [DVF France Scraper](https://apify.com/dltik/dvf-france-transactions) — historical real-estate transactions
- [Géocodeur INSEE](https://apify.com/dltik/geocodeur-france-insee) — address → INSEE + GPS

License: MIT · Author: [dltik](https://apify.com/dltik)

# Actor input Schema

## `sources` (type: `array`):

Subset of: pap, bienici (HTTP, no proxy needed); leboncoin, seloger, logic\_immo (require Residential proxy + Playwright).

## `transaction` (type: `string`):

buy = vente, rent = location.

## `cities` (type: `array`):

City names. Example: \['paris','lyon'].

## `postalCodes` (type: `array`):

5-digit postal codes. Example: \['75001','75002'].

## `departments` (type: `array`):

2-digit department codes. Example: \['75','69','13'].

## `propertyTypes` (type: `array`):

Subset of: appartement, maison, terrain, parking, local, loft, chateau.

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

Minimum listing price in euros.

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

Maximum listing price in euros.

## `surfaceMin` (type: `integer`):

Minimum living area in m².

## `surfaceMax` (type: `integer`):

Maximum living area in m².

## `roomsMin` (type: `integer`):

Minimum number of rooms.

## `roomsMax` (type: `integer`):

Maximum number of rooms.

## `bedroomsMin` (type: `integer`):

Minimum number of bedrooms.

## `onlyOwner` (type: `boolean`):

Restrict to particulier (PAP all owner; LBC private filter).

## `newOnly` (type: `boolean`):

Restrict to programmes neufs (new construction).

## `onlyWithPhotos` (type: `boolean`):

Skip listings without photos.

## `enrichDpe` (type: `boolean`):

When source doesn't return DPE, look up the official ADEME database by address+postal+surface match.

## `dedupAcrossSources` (type: `boolean`):

Same property listed on LBC + SeLoger? Merge into one record (keep most-complete).

## `maxResultsPerSource` (type: `integer`):

Each enabled source will return up to this many listings.

## `capsolverApiKey` (type: `string`):

Optional CapSolver API key for DataDome challenge solving. With it, LBC/SeLoger/Logic-immo work at 99% reliability (~$0.0005 per solve). Without it, those sources are best-effort. Get one at capsolver.com.

## `proxyConfig` (type: `object`):

Apify proxy. Default datacenter works for HTTP sources (PAP, Bien'ici). Switch to RESIDENTIAL with apifyProxyCountry='FR' for DataDome/PerimeterX bypass on LBC, SeLoger, Logic-immo.

## Actor input object example

```json
{
  "sources": [
    "pap",
    "bienici"
  ],
  "transaction": "buy",
  "cities": [],
  "postalCodes": [],
  "departments": [],
  "propertyTypes": [
    "appartement"
  ],
  "onlyOwner": false,
  "newOnly": false,
  "onlyWithPhotos": false,
  "enrichDpe": true,
  "dedupAcrossSources": true,
  "maxResultsPerSource": 100,
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Real-estate listings (deduplicated across sources).

# 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 = {
    "sources": [
        "pap",
        "bienici"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dltik/pige-immo-fr-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 = { "sources": [
        "pap",
        "bienici",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("dltik/pige-immo-fr-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 '{
  "sources": [
    "pap",
    "bienici"
  ]
}' |
apify call dltik/pige-immo-fr-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Pige Immo FR: LBC + SeLoger + PAP + Bien'ici Multi-Source",
        "description": "Multi-source French real-estate pige: Leboncoin, SeLoger, Bien'ici, PAP, Logic-immo in one run. Auto-deduplication, ADEME DPE enrichment, GPS, price per m², owner-vs-agency flag. Filter by transaction, city, type, price, surface. For pige software, agents, hunters, marchands. $5/1K listings.",
        "version": "1.0",
        "x-build-id": "Zfsci983hAe38jtnQ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dltik~pige-immo-fr-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dltik-pige-immo-fr-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/dltik~pige-immo-fr-scraper/runs": {
            "post": {
                "operationId": "runs-sync-dltik-pige-immo-fr-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/dltik~pige-immo-fr-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-dltik-pige-immo-fr-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": {
                    "sources": {
                        "title": "Sources to scrape",
                        "type": "array",
                        "description": "Subset of: pap, bienici (HTTP, no proxy needed); leboncoin, seloger, logic_immo (require Residential proxy + Playwright).",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "pap",
                            "bienici"
                        ]
                    },
                    "transaction": {
                        "title": "Transaction",
                        "enum": [
                            "buy",
                            "rent"
                        ],
                        "type": "string",
                        "description": "buy = vente, rent = location.",
                        "default": "buy"
                    },
                    "cities": {
                        "title": "Cities",
                        "type": "array",
                        "description": "City names. Example: ['paris','lyon'].",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "postalCodes": {
                        "title": "Postal codes",
                        "type": "array",
                        "description": "5-digit postal codes. Example: ['75001','75002'].",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "departments": {
                        "title": "Department codes",
                        "type": "array",
                        "description": "2-digit department codes. Example: ['75','69','13'].",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "propertyTypes": {
                        "title": "Property types",
                        "type": "array",
                        "description": "Subset of: appartement, maison, terrain, parking, local, loft, chateau.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "appartement"
                        ]
                    },
                    "priceMin": {
                        "title": "Min price (€)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum listing price in euros."
                    },
                    "priceMax": {
                        "title": "Max price (€)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum listing price in euros."
                    },
                    "surfaceMin": {
                        "title": "Min surface (m²)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum living area in m²."
                    },
                    "surfaceMax": {
                        "title": "Max surface (m²)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum living area in m²."
                    },
                    "roomsMin": {
                        "title": "Min rooms",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Minimum number of rooms."
                    },
                    "roomsMax": {
                        "title": "Max rooms",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of rooms."
                    },
                    "bedroomsMin": {
                        "title": "Min bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of bedrooms."
                    },
                    "onlyOwner": {
                        "title": "Owner-only listings (no agency)",
                        "type": "boolean",
                        "description": "Restrict to particulier (PAP all owner; LBC private filter).",
                        "default": false
                    },
                    "newOnly": {
                        "title": "New builds only",
                        "type": "boolean",
                        "description": "Restrict to programmes neufs (new construction).",
                        "default": false
                    },
                    "onlyWithPhotos": {
                        "title": "Only listings with photos",
                        "type": "boolean",
                        "description": "Skip listings without photos.",
                        "default": false
                    },
                    "enrichDpe": {
                        "title": "Enrich with ADEME DPE",
                        "type": "boolean",
                        "description": "When source doesn't return DPE, look up the official ADEME database by address+postal+surface match.",
                        "default": true
                    },
                    "dedupAcrossSources": {
                        "title": "Dedup across sources",
                        "type": "boolean",
                        "description": "Same property listed on LBC + SeLoger? Merge into one record (keep most-complete).",
                        "default": true
                    },
                    "maxResultsPerSource": {
                        "title": "Max results per source",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Each enabled source will return up to this many listings.",
                        "default": 100
                    },
                    "capsolverApiKey": {
                        "title": "CapSolver API key (optional, for LBC/SeLoger reliability)",
                        "type": "string",
                        "description": "Optional CapSolver API key for DataDome challenge solving. With it, LBC/SeLoger/Logic-immo work at 99% reliability (~$0.0005 per solve). Without it, those sources are best-effort. Get one at capsolver.com."
                    },
                    "proxyConfig": {
                        "title": "Proxy (Residential required for LBC/SeLoger/Logic-immo)",
                        "type": "object",
                        "description": "Apify proxy. Default datacenter works for HTTP sources (PAP, Bien'ici). Switch to RESIDENTIAL with apifyProxyCountry='FR' for DataDome/PerimeterX bypass on LBC, SeLoger, Logic-immo.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
