# Spain Company Registry — BORME Events API (English) (`zon4a/spain-company-registry-borme-events`) Actor

Normalized, typed English events from Spain's official commercial registry gazette (BORME): incorporations, director appointments/terminations, capital changes, insolvencies, dissolutions. Source: official BOE open-data API.

- **URL**: https://apify.com/zon4a/spain-company-registry-borme-events.md
- **Developed by:** [George K.](https://apify.com/zon4a) (community)
- **Categories:** Lead generation, E-commerce, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 company events

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Spain Company Registry — BORME Events API (English)

Get **typed, English-language company events from Spain's official commercial registry** (BORME — *Boletín Oficial del Registro Mercantil*) as clean JSON: incorporations, director appointments and terminations, capital increases, insolvencies, dissolutions, address changes and 40+ more event types. Data comes straight from the official BOE open-data API — every record traceable to its official gazette entry.

No Spanish required. No PDF scraping. No manual monitoring of gazette announcements.

### Why this actor

BORME is published only in Spanish, only as daily gazette issues, and the raw acts are dense legal shorthand (`"Ceses/Dimisiones. Adm. Unico: ..."`). This actor turns them into a **normalized event stream**:

- **47 typed event kinds** (English enums): `INCORPORATION`, `APPOINTMENTS`, `TERMINATIONS`, `CAPITAL_INCREASE`, `MERGER_BY_ABSORPTION`, `INSOLVENCY_DECLARATION`, `DISSOLUTION`, `SOLE_SHAREHOLDER_CHANGE`, `PROVISIONAL_SHEET_CLOSURE_NIF_REVOKED`, …
- **56 normalized officer roles**: `SOLE_DIRECTOR`, `JOINT_AND_SEVERAL_DIRECTOR`, `PROXY_HOLDER`, `LIQUIDATOR`, `AUDITOR`, … with person/entity names extracted per role.
- **Registry coordinates** (`Datos registrales`: sheet, section, inscription, registration date) parsed into fields.
- **Nothing silently dropped**: parse completeness is measured per file (long-run average **99.9%+**); any unrecognized fragment is preserved verbatim in `unparsed_spans`, and the full original text is always in `raw_text`.
- **Full history**: any publication date from **2009-01-02** to today (BORME publishes Mon–Fri).
- **Stable IDs**: `event_id` is deterministic — safe to deduplicate across re-runs.

### Use cases

- **KYC / AML / onboarding** — verify a Spanish counterparty's current directors, check for insolvency proceedings, liquidation status, or a tax-authority sheet closure before signing.
- **Sales intelligence & lead generation** — newly incorporated companies by province and day; leadership changes as buying signals.
- **Credit & supplier risk monitoring** — watch portfolio companies for `INSOLVENCY_DECLARATION`, `DISSOLUTION`, `CAPITAL_REDUCTION`, `EXTINCTION`.
- **AI agents & LLM pipelines** — typed JSON with English enums slots directly into agent tools, RAG corpora and workflow automations (n8n, Make, Zapier via Apify integrations). This actor runs with limited permissions and plain run-to-completion semantics, so it is safe to call from autonomous agents.
- **Journalism & research** — corporate activity by region, sector dynamics, officer networks.

### Input

All fields are optional — the default run fetches yesterday's issue, all provinces, all event types.

```json
{
  "dateFrom": "2026-06-30",
  "dateTo": "2026-06-30",
  "provinces": ["MADRID", "BARCELONA"],
  "actTypes": ["INCORPORATION", "APPOINTMENTS", "TERMINATIONS"],
  "companyNameFilter": "metales"
}
````

| Field | Meaning |
|---|---|
| `dateFrom` / `dateTo` | Publication date range (`YYYY-MM-DD`), any dates since 2009-01-02. Defaults: yesterday / `dateFrom`. |
| `provinces` | Province names as printed in BORME (`MADRID`, `VALENCIA`, …). Empty = all ~50. |
| `actTypes` | Filter by typed event kind (see full list below). Empty = all. |
| `companyNameFilter` | Case-insensitive substring match on company name — cheap way to watch specific companies. |

### Output

One dataset record per company per gazette entry. A real example (one Madrid company, five chained acts in a single entry):

```json
{
  "event_id": "sha1:4763c574a6b992f6b9c1628cee64b0e5abb0cf2d",
  "date": "2026-06-30",
  "borme_id": "BORME-A-2026-123-28",
  "province": "MADRID",
  "act_number": 308560,
  "company_name": "VAZ METALES SL.",
  "company_slug": "vaz-metales-sl",
  "company_flags": [],
  "acts": [
    {"act_type_raw": "Sociedad unipersonal", "act_type": "SOLE_SHAREHOLDER_STATUS"},
    {"act_type_raw": "Cambio de identidad del socio único", "act_type": "SOLE_SHAREHOLDER_CHANGE",
     "payload_raw": "CID SAEZ JESUS MIGUEL."},
    {"act_type_raw": "Ceses/Dimisiones", "act_type": "TERMINATIONS",
     "roles": [{"role_raw": "Adm. Unico", "role": "SOLE_DIRECTOR", "names": ["VAZ CULEBRAS JOAQUIN"]}]},
    {"act_type_raw": "Nombramientos", "act_type": "APPOINTMENTS",
     "roles": [{"role_raw": "Adm. Unico", "role": "SOLE_DIRECTOR", "names": ["CID SAEZ JESUS MIGUEL"]}]},
    {"act_type_raw": "Cambio de domicilio social", "act_type": "ADDRESS_CHANGE",
     "payload_raw": "C/ SAN JOSE DE CALASANZ 1 Ptl.2 1º C (VILLANUEVA DEL PARDILLO)."}
  ],
  "registral": {"seccion": 8, "hoja": "M 507991", "inscription": "2", "reg_date": "2026-06-23",
                "raw": "S 8 , H M 507991, I/A 2 (23.06.26)."},
  "raw_text": "Sociedad unipersonal. Cambio de identidad del socio único: ...",
  "unparsed_spans": [],
  "source": "parser"
}
```

(Empty fields trimmed here for readability — records always carry the full schema, including verbatim `raw_text` for audit.)

#### All 47 event types

`ACCOUNTS_NON_APPROVAL_JUSTIFICATION`, `ADDRESS_CHANGE`, `APPOINTMENTS`, `APPOINTMENT_CANCELLATIONS`, `BAD_DEBT_WRITE_OFF`, `BOND_ISSUE`, `BRANCH`, `CALLED_UP_CAPITAL_PAID`, `CAPITAL_INCREASE`, `CAPITAL_REDUCTION`, `COMPANY_REACTIVATION`, `COMPANY_WEBSITE`, `DISSOLUTION`, `ERRATUM`, `EXTINCTION`, `FOREIGN_BRANCH_FIRST`, `GLOBAL_TRANSFER_ASSETS_LIABILITIES`, `INCORPORATION`, `INSOLVENCY_DECLARATION`, `INSOLVENCY_STATUS`, `LEGAL_ADAPTATION`, `MERGER_BY_ABSORPTION`, `MERGER_BY_UNION`, `NAME_CHANGE`, `OTHER`, `PARTIAL_SPIN_OFF`, `POWERS_MODIFICATION`, `PREVENTIVE_ANNOTATION`, `PROVISIONAL_SHEET_CLOSURE_INSOLVENCY`, `PROVISIONAL_SHEET_CLOSURE_NIF_REVOKED`, `PROVISIONAL_SHEET_CLOSURE_TAX`, `PURPOSE_CHANGE`, `PURPOSE_EXTENSION`, `REGISTRAL_DATA`, `REGISTRY_SHEET_REOPENED`, `REVOCATIONS`, `RE_ELECTIONS`, `SEGREGATION`, `SOLE_SHAREHOLDER_CHANGE`, `SOLE_SHAREHOLDER_DECLARATION`, `SOLE_SHAREHOLDER_STATUS`, `SOLE_SHAREHOLDER_STATUS_LOST`, `SOLE_TRADER`, `STATUTORY_AMENDMENTS`, `TERMINATIONS`, `TOTAL_SPIN_OFF`, `TRANSFORMATION`

### Pricing

Pay-per-event: a small fixed charge per run start plus a per-record charge for each event actually delivered after your filters. You pay for what you receive — filters are applied *before* charging.

Typical costs:

- **Watch one company** (name filter, one month of dates): usually **a few cents**.
- **Daily new incorporations in Madrid** (~120 records/day): **~$0.40 per day**.
- **Full-country daily firehose** (~2,300 events/day on average): **~$7 per day**.

### Data quality & guarantees

- Source: official **BOE open-data API** (`boe.es/datosabiertos`) — the authoritative publisher of BORME. Polite fetching (≤1 req/s, identifying User-Agent).
- Per-file **parse completeness** is computed as consumed-characters / total-characters and logged; a warning is emitted for any file under 99.5%. Corpus average across 3 gazette "epochs" (2009 / 2015 / 2026 formats): **99.9%+**.
- Unmapped labels come through as `act_type: "OTHER"` / `role: "UNKNOWN_ROLE"` with the raw Spanish label preserved — never dropped.
- Deterministic parser (no LLM in the hot path): identical input always yields identical output.

### Hosted API

A REST API over the full 2009+ archive — company timelines, watchlists with webhooks, MCP for agents — is opening soon: **[bormeapi.com](https://bormeapi.com/)**.

### Legal & attribution

- Contains public-sector information from the **Agencia Estatal Boletín Oficial del Estado** (BORME), reused under Spanish open-data rules (Law 18/2015, RD 1495/2011). This actor is not affiliated with or endorsed by BOE.
- BORME data is official public registry information. If you are an individual named in the registry and wish to exercise data-protection rights over derived outputs, contact the address in the actor's support section.

### FAQ

**Does it cover the whole history?** Yes — BORME has been published digitally since 2009-01-02; any date range since then works. BORME publishes Monday–Friday (no weekend/holiday issues; those days simply produce no records).

**Is this the "official" registry (Registro Mercantil) full text?** BORME is the official *gazette* of the registry: it publishes every registrable act (appointments, capital changes, insolvency…). It does not include full deed texts or annual accounts — for those you need the registry itself. For monitoring and screening, BORME is the canonical public source.

**How fresh is the data?** Each issue is published in the morning (Europe/Madrid) of its date; a run with `dateFrom` = today after publication returns same-day events.

**Can I run it from an AI agent?** Yes — limited permissions, no standby mode, plain JSON output, deterministic charges per delivered record.

# Actor input Schema

## `dateFrom` (type: `string`):

First publication date to fetch (YYYY-MM-DD). Defaults to the latest published issue (BORME publishes Mon-Fri, skipping holidays).

## `dateTo` (type: `string`):

Last publication date to fetch (YYYY-MM-DD). Defaults to dateFrom.

## `provinces` (type: `array`):

Filter by province names as printed in BORME (e.g. MADRID, BARCELONA, VALENCIA). Accent-insensitive: CADIZ matches CÁDIZ. Empty = all provinces.

## `actTypes` (type: `array`):

Filter by normalized event type (e.g. INCORPORATION, APPOINTMENTS, TERMINATIONS, CAPITAL\_INCREASE, DISSOLUTION, INSOLVENCY\_STATUS, PROVISIONAL\_SHEET\_CLOSURE\_NIF\_REVOKED). Empty = all types.

## `companyNameFilter` (type: `string`):

Case-insensitive substring filter on the company name.

## Actor input object example

```json
{}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("zon4a/spain-company-registry-borme-events").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("zon4a/spain-company-registry-borme-events").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 '{}' |
apify call zon4a/spain-company-registry-borme-events --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=zon4a/spain-company-registry-borme-events",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Spain Company Registry — BORME Events API (English)",
        "description": "Normalized, typed English events from Spain's official commercial registry gazette (BORME): incorporations, director appointments/terminations, capital changes, insolvencies, dissolutions. Source: official BOE open-data API.",
        "version": "0.1",
        "x-build-id": "z6OPNSH65dTKzfVlO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/zon4a~spain-company-registry-borme-events/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-zon4a-spain-company-registry-borme-events",
                "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/zon4a~spain-company-registry-borme-events/runs": {
            "post": {
                "operationId": "runs-sync-zon4a-spain-company-registry-borme-events",
                "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/zon4a~spain-company-registry-borme-events/run-sync": {
            "post": {
                "operationId": "run-sync-zon4a-spain-company-registry-borme-events",
                "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": {
                    "dateFrom": {
                        "title": "Date from",
                        "type": "string",
                        "description": "First publication date to fetch (YYYY-MM-DD). Defaults to the latest published issue (BORME publishes Mon-Fri, skipping holidays)."
                    },
                    "dateTo": {
                        "title": "Date to",
                        "type": "string",
                        "description": "Last publication date to fetch (YYYY-MM-DD). Defaults to dateFrom."
                    },
                    "provinces": {
                        "title": "Provinces",
                        "type": "array",
                        "description": "Filter by province names as printed in BORME (e.g. MADRID, BARCELONA, VALENCIA). Accent-insensitive: CADIZ matches CÁDIZ. Empty = all provinces.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "actTypes": {
                        "title": "Event types",
                        "type": "array",
                        "description": "Filter by normalized event type (e.g. INCORPORATION, APPOINTMENTS, TERMINATIONS, CAPITAL_INCREASE, DISSOLUTION, INSOLVENCY_STATUS, PROVISIONAL_SHEET_CLOSURE_NIF_REVOKED). Empty = all types.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "companyNameFilter": {
                        "title": "Company name contains",
                        "type": "string",
                        "description": "Case-insensitive substring filter on the company name."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
