# France Notaires Real Estate API - Immobilier Notaires (`webdata_labs/france-notaires-property-api`) Actor

\[💵 $3.00 / 1K] Annonces officielles des Notaires de France (immobilier.notaires.fr) en schema anglais propre: prix, honoraires, DPE, surface, geo et contact du notaire. Filter by departement, price, area; monitoring mode returns only new listings.

- **URL**: https://apify.com/webdata\_labs/france-notaires-property-api.md
- **Developed by:** [WebData Labs](https://apify.com/webdata_labs) (community)
- **Categories:** Developer tools, Lead generation, Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 listing records

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

## France Notaires Real Estate API - Immobilier Notaires

**🇫🇷 Annonces immobilieres officielles des Notaires de France** - ventes et locations depuis
`immobilier.notaires.fr` : prix, honoraires de notaire, DPE, surface, nombre de pieces,
coordonnees GPS et **contact du notaire** (nom, telephone, email). Filtrez par departement,
prix et surface. Recherche par departement, achat immobilier, viager, vente notariale interactive.

Every listing on France's **official notarial property portal**, delivered as one clean, English
schema - price, notary fees, energy rating, geolocation and the listing notary's contact details.
No login, no HTML scraping: this Actor reads the portal's own public JSON API and normalizes the
French codes into fields you can use straight away.

> 💵 **$3.00 per 1,000 listings.** Platform usage included, no per-run fee.

---

### Why this Actor

`immobilier.notaires.fr` is run by the Conseil superieur du notariat and aggregates listings from
notary offices across France - a source that is authoritative but only searchable one page at a
time, in French, with raw internal codes (`MAI`, `ANCIEN`, `redevableEmoluments`). This Actor turns
it into structured data:

- **Clean English schema** - `propertyType`, `transactionType`, `priceEur`, `notaryFeesEur`,
  `energyClass`, `livingAreaSqm` instead of `typeBien`, `prixAffiche`, `consommationClasse`.
- **Notary lead contacts** - with `includeDetails`, every listing carries the notary's name,
  phone and email. A ready-made B2B lead list for proptech, mortgage, insurance and relocation.
- **DPE energy data** - energy class (A-G), GES class, annual energy cost range - useful for
  renovation, energy and valuation use cases.
- **Filter server-side** - by department, price range, minimum area and minimum rooms; filter
  client-side by property type, judicial origin and interactive-auction (VNI) status.
- **Monitoring mode** - `onlyNewListings` returns only listings not seen in previous runs, so a
  scheduled run gives you just today's new inventory and you pay only for new rows.

Part of a European property-data family alongside our Spain, Italy, Germany and Poland
auction APIs - same clean-schema approach, one country at a time.

---

### Input

| Field | Type | Description |
|---|---|---|
| `departments` | array | Department codes, e.g. `["75","92","33"]`. One request per department. Empty / `["all"]` searches all of France. |
| `propertyTypes` | array | Optional filter: `MAI` house, `APP` apartment, `IMM` building, `TER` land, `LAC`/`LOC` commercial, `GAR` garage, `FON` business, `BUR` office, `CHA` chateau. |
| `minPriceEur` / `maxPriceEur` | integer | Price bounds (EUR). |
| `minAreaSqm` | integer | Minimum habitable surface (m²). |
| `minRooms` | integer | Minimum number of rooms (pieces). |
| `onlyInteractiveAuctions` | boolean | Keep only ventes notariales interactives (online auctions). |
| `onlyJudicial` | boolean | Keep only judicial-origin sales. |
| `includeDetails` | boolean | Fetch each listing's detail page (area, DPE, features, full description, coordinates, notary contact). One extra request per listing. |
| `onlyNewListings` | boolean | Monitoring mode - push only listings not seen before (per department). |
| `maxResults` | integer | Cap listings per department (1-20000, default 1000). |
| `proxyConfiguration` | object | Optional Apify Proxy (public source; usually not needed). |

#### Example

```json
{
  "departments": ["06", "83"],
  "propertyTypes": ["MAI", "APP"],
  "minPriceEur": 200000,
  "maxPriceEur": 600000,
  "includeDetails": true,
  "maxResults": 500
}
````

***

### Output

One `listing` row per property (plus a `search_summary` per department and any `error` rows).

| Field | Description |
|---|---|
| `propertyType`, `propertyTypeCode` | English label + raw code. |
| `transactionType` | `sale`, `rental`, `life-annuity`. |
| `priceEur`, `totalPriceEur`, `notaryFeesEur`, `feesPct`, `feesPayableBy` | Price and notary fees. |
| `rooms`, `bedrooms`, `bathrooms`, `livingAreaSqm`, `landAreaSqm` | Size (last three need `includeDetails`). |
| `city`, `postalCode`, `inseeCommune`, `department`, `departmentName`, `region`, `regionName`, `quarter` | Location. |
| `latitude`, `longitude` | Coordinates (with `includeDetails`). |
| `energyClass`, `energyValue`, `gesClass`, `gesValue`, `dpeDate`, `annualEnergyCostMinEur`, `annualEnergyCostMaxEur` | DPE energy data (with `includeDetails`). |
| `features` | terrace, garden, cellar, pool, balcony, fireplace (with `includeDetails`). |
| `title`, `shortDescription`, `fullDescription`, `fullDescriptionEn` | Marketing text. |
| `isSold`, `isWithdrawn`, `isSaleReported`, `isJudicial`, `isInteractiveAuction` | Status flags. |
| `notaryName`, `notaryEmail`, `notaryPhone`, `notaryCity`, `notaryPostalCode`, `notaryAddress` | Listing notary contact (with `includeDetails`). |
| `photoUrl`, `photoCount`, `phone`, `detailUrl`, `detailUrlEn`, `createdAt`, `updatedAt` | Media, contact and links. |

***

### Use cases

- **Proptech / portals** - keep a France dataset fresh from the authoritative notarial source.
- **Notary lead generation** - build a contact list of notary offices actively listing property.
- **Market & valuation analysis** - price, area, DPE and geo for comps and dashboards.
- **Energy / renovation** - target properties by DPE class (F/G "passoires thermiques").
- **Relocation / buyer agents** - monitor new inventory in chosen departments daily.

### En francais

Cet Actor recupere les annonces publiees sur `immobilier.notaires.fr` (le portail officiel des
Notaires de France) et renvoie des donnees structurees : type de bien, prix, honoraires, DPE,
surface, coordonnees et **coordonnees du notaire** (nom, telephone, email). Filtrez par
departement, prix, surface et nombre de pieces. Le mode monitoring (`onlyNewListings`) ne renvoie
que les nouvelles annonces a chaque execution planifiee. Tarif : 3 $ / 1000 annonces.

#### FAQ

- **Source ?** Le portail public des Notaires de France. L'Actor lit son API JSON publique.
- **Combien d'annonces ?** ~39 000 annonces actives au niveau national (variable).
- **Enchères ?** Les ventes notariales interactives (VNI) sont incluses et filtrables, mais elles
  ne representent qu'une petite part des annonces.
- **Proxy ?** Optionnel - source publique officielle.

***

*Not affiliated with the Conseil superieur du notariat or immobilier.notaires.fr. Reads only
publicly available listing data.*

# Actor input Schema

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

Department codes to search, e.g. "75" (Paris), "13" (Bouches-du-Rhone), "33" (Gironde), "06" (Alpes-Maritimes), "2A"/"2B" (Corsica), "971"-"976" (overseas). One request per department. Leave empty or use "all" to search the whole of France (cap with Max results).

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

Optional filter (applied client-side). Codes: MAI (house), APP (apartment), IMM (building), TER (land), LAC/LOC (commercial premises), GAR/PAR (garage/parking), FON (business), BUR (office), CHA (chateau). Empty = all types.

## `minPriceEur` (type: `integer`):

Only listings at or above this price.

## `maxPriceEur` (type: `integer`):

Only listings at or below this price.

## `minAreaSqm` (type: `integer`):

Only listings at or above this habitable surface.

## `minRooms` (type: `integer`):

Only listings with at least this many rooms (pieces).

## `onlyInteractiveAuctions` (type: `boolean`):

Keep only ventes notariales interactives (online notarial auctions). Note: these are a small share of listings.

## `onlyJudicial` (type: `boolean`):

Keep only sales flagged as judicial in origin. Rare in the public feed.

## `includeDetails` (type: `boolean`):

Fetch each listing's detail page for living/land area, energy class (DPE), features, full description, coordinates and the notary's name, phone and email. One extra request per listing - slower on large searches.

## `onlyNewListings` (type: `boolean`):

Push only listings not seen in previous runs of this Actor on your account (per department). The first run returns everything and initializes memory; every following run returns just the delta - ideal for scheduled monitoring, and you are charged only for new rows.

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

Cap the number of listings collected per department (or for all France).

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

Optional. The notaires API is a public official source; enable Apify Proxy only if you hit rate limits.

## Actor input object example

```json
{
  "departments": [
    "75"
  ],
  "propertyTypes": [],
  "onlyInteractiveAuctions": false,
  "onlyJudicial": false,
  "includeDetails": false,
  "onlyNewListings": false,
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

No description

## `summaries` (type: `string`):

No description

## `errors` (type: `string`):

No description

## `output` (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 = {
    "departments": [
        "75"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("webdata_labs/france-notaires-property-api").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 = { "departments": ["75"] }

# Run the Actor and wait for it to finish
run = client.actor("webdata_labs/france-notaires-property-api").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 '{
  "departments": [
    "75"
  ]
}' |
apify call webdata_labs/france-notaires-property-api --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "France Notaires Real Estate API - Immobilier Notaires",
        "description": "[💵 $3.00 / 1K] Annonces officielles des Notaires de France (immobilier.notaires.fr) en schema anglais propre: prix, honoraires, DPE, surface, geo et contact du notaire. Filter by departement, price, area; monitoring mode returns only new listings.",
        "version": "0.1",
        "x-build-id": "eHJEUcc5bmULFTOAs"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/webdata_labs~france-notaires-property-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-webdata_labs-france-notaires-property-api",
                "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/webdata_labs~france-notaires-property-api/runs": {
            "post": {
                "operationId": "runs-sync-webdata_labs-france-notaires-property-api",
                "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/webdata_labs~france-notaires-property-api/run-sync": {
            "post": {
                "operationId": "run-sync-webdata_labs-france-notaires-property-api",
                "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": {
                    "departments": {
                        "title": "French departments",
                        "type": "array",
                        "description": "Department codes to search, e.g. \"75\" (Paris), \"13\" (Bouches-du-Rhone), \"33\" (Gironde), \"06\" (Alpes-Maritimes), \"2A\"/\"2B\" (Corsica), \"971\"-\"976\" (overseas). One request per department. Leave empty or use \"all\" to search the whole of France (cap with Max results).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "propertyTypes": {
                        "title": "Property types",
                        "type": "array",
                        "description": "Optional filter (applied client-side). Codes: MAI (house), APP (apartment), IMM (building), TER (land), LAC/LOC (commercial premises), GAR/PAR (garage/parking), FON (business), BUR (office), CHA (chateau). Empty = all types.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minPriceEur": {
                        "title": "Min price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only listings at or above this price."
                    },
                    "maxPriceEur": {
                        "title": "Max price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only listings at or below this price."
                    },
                    "minAreaSqm": {
                        "title": "Min living area (m2)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only listings at or above this habitable surface."
                    },
                    "minRooms": {
                        "title": "Min rooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only listings with at least this many rooms (pieces)."
                    },
                    "onlyInteractiveAuctions": {
                        "title": "Only interactive auctions (VNI)",
                        "type": "boolean",
                        "description": "Keep only ventes notariales interactives (online notarial auctions). Note: these are a small share of listings.",
                        "default": false
                    },
                    "onlyJudicial": {
                        "title": "Only judicial-origin sales",
                        "type": "boolean",
                        "description": "Keep only sales flagged as judicial in origin. Rare in the public feed.",
                        "default": false
                    },
                    "includeDetails": {
                        "title": "Include full details",
                        "type": "boolean",
                        "description": "Fetch each listing's detail page for living/land area, energy class (DPE), features, full description, coordinates and the notary's name, phone and email. One extra request per listing - slower on large searches.",
                        "default": false
                    },
                    "onlyNewListings": {
                        "title": "Only new listings (monitoring mode)",
                        "type": "boolean",
                        "description": "Push only listings not seen in previous runs of this Actor on your account (per department). The first run returns everything and initializes memory; every following run returns just the delta - ideal for scheduled monitoring, and you are charged only for new rows.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max results per department",
                        "minimum": 1,
                        "maximum": 20000,
                        "type": "integer",
                        "description": "Cap the number of listings collected per department (or for all France).",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Optional. The notaires API is a public official source; enable Apify Proxy only if you hit rate limits.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
