# Poland KNF Financial Registry Scraper (`regdata/knf-registry-scraper`) Actor

Extract payment institutions, e-money issuers, credit intermediaries, lending companies & pawnbroking operators from 3 Polish KNF registries. Search by name, NIP, entity type. Bulk export 75,000+ entities. Structured JSON. No auth needed.

- **URL**: https://apify.com/regdata/knf-registry-scraper.md
- **Developed by:** [regdata](https://apify.com/regdata) (community)
- **Categories:** Business, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 entity results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Poland KNF Financial Registry Scraper | Rejestr KNF

Verify whether payment institutions, e-money issuers, lending companies, and credit intermediaries are properly licensed by Poland's financial supervisor - across 75,000+ entities in three KNF registries that have no public API.

### Quick Start

Click **Try it** and paste this input:

```json
{
  "registry": "all",
  "name": "PayU"
}
````

### Sample Output

```json
{
  "name": "PayU S.A.",
  "registryNumber": "IP1/2012",
  "nip": "5213103635",
  "entityType": "PSD_PI",
  "entityTypeLabel": "Domestic payment institution",
  "status": "Wpisany",
  "address": "ul. Grunwaldzka 186",
  "postalCode": "60-166",
  "city": "Poznan",
  "country": "Polska",
  "registrationDate": "2012-10-25",
  "parentEntity": null,
  "registry": "e-rup",
  "sourceUrl": "https://e-rup.knf.gov.pl/"
}
```

### Pricing

| Volume | Cost |
|--------|------|
| 1 result | $0.004 |
| 100 results | ~$0.41 |
| 1,000 results | ~$4.01 |
| 10,000 results | ~$40.01 |

Start cost per run: **$0.005**. Free Apify credits ($5) = ~1,250 results at no cost.

### Features

- **Three KNF registries** - e-rup (payment/e-money, ~17K), rpkip (credit/lending, ~58K), rdl (pawnbroking, ~250)
- **No browser automation** - direct HTTP requests to KNF's internal JSON APIs
- **Search by name or NIP** - find specific entities across registries
- **Filter by entity type** - target specific categories (payment institutions, lending institutions, etc.)
- **Bulk export** - download entire registries for database building
- **Cross-registry search** - query all three registries in a single run

### Related Actors

- [CRBR Beneficial Owners Scraper](https://apify.com/regdata/crbr-beneficial-owners-scraper) - verify ultimate beneficial owners of Polish companies by NIP or KRS number
- [Poland KRS Financial Scraper](https://apify.com/regdata/poland-krs-financial-scraper) - extract balance sheets and income statements from eKRS

Part of the **European Corporate Registry Data** suite by [regdata](https://apify.com/regdata).

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `registry` | string | No | `all` | Which registry: `e-rup`, `rpkip`, `rdl`, or `all` |
| `name` | string | No | - | Entity name search (partial match) |
| `nip` | string | No | - | Polish Tax ID (NIP) - exact match |
| `entityType` | string | No | - | Entity type code filter (see below) |
| `exportAll` | boolean | No | `false` | Export all records (ignores search filters) |
| `maxResults` | integer | No | `100` | Max results. Set to `0` for unlimited with `exportAll` |

#### Entity Type Codes

**e-rup (Payment/E-Money):**
| Code | Description |
|------|-------------|
| `PSD_PI` | Domestic payment institution |
| `PSD_EMI` | Domestic e-money institution |
| `PSD_ENL` | Credit union (SKOK) |
| `PSD_EPI@BP` | Payment services office |
| `PSD_EPI@MIP` | Small payment institution |
| `PSD_AISP` | Account information service provider |
| `PSD_AG` | Agent of registered entity |
| `PSD_BR` | Branch of registered entity |

**rpkip (Credit/Lending):**
| Code | Description |
|------|-------------|
| `RPH` | Mortgage credit intermediary |
| `RPK` | Consumer credit intermediary |
| `RHA` | Agent of mortgage credit intermediary |
| `RIP` | Lending institution |

### Output Fields

| Field | Description |
|-------|-------------|
| `name` | Entity/company name |
| `registryNumber` | KNF registry number (e.g., "IP1/2012") |
| `nip` | Polish Tax ID |
| `krs` | KRS number (rdl registry only) |
| `entityType` | Type code (PSD\_PI, RPH, RIP, etc.) |
| `entityTypeLabel` | Human-readable type in English |
| `status` | Registration status (Wpisany = Registered, Wykreslony = Deregistered) |
| `address` | Street address |
| `postalCode` | Postal code |
| `city` | City |
| `country` | Country |
| `registrationDate` | Date of registration/deregistration |
| `parentEntity` | Parent entity name (for agents/branches) |
| `registry` | Source registry identifier |
| `sourceUrl` | URL of the source registry portal |

### Use Cases

- **KYC/AML Compliance** - verify that payment institutions and lending companies are properly registered with KNF
- **RegTech** - build automated compliance checks against KNF registries
- **Credit Risk** - check if lending institutions are registered before engaging
- **Due Diligence** - verify financial service providers for investment or partnership
- **Market Research** - analyze the Polish fintech, payments, and lending landscape

### Data Source & Compliance

All data comes from official Polish government registries maintained by KNF (Komisja Nadzoru Finansowego):

- https://e-rup.knf.gov.pl/ (payment services)
- https://rpkip.knf.gov.pl/ (credit intermediaries)
- https://rdl.knf.gov.pl/ (pawnbroking)

Data is publicly available and free to access. KNF is the statutory supervisor of financial markets in Poland.

### Polish Business Data Suite

This actor is part of the **Polish Business Data Suite** - 9 actors covering the full Polish company intelligence stack. No subscriptions, no minimum commitment - pay only for what you use.

| Registry | Actor | What it does |
|----------|-------|-------------|
| **eKRS** | [Financial Statements](https://apify.com/regdata/poland-krs-financial-scraper) | Balance sheets, income statements |
| **KRS** | [Board Members](https://apify.com/regdata/krs-fullnames-scraper) | Full non-anonymized director names |
| **KRZ** | [Debtor Registry](https://apify.com/regdata/krz-debtor-scraper) | Bankruptcy, restructuring, enforcement |
| **KNF** | [Financial Supervision](https://apify.com/regdata/knf-registry-scraper) | 75,000+ regulated financial entities |
| **MSiG** | [Court Gazette](https://apify.com/regdata/msig-scraper) | Court announcements since 2001 |
| **EKW** | [Land Registry](https://apify.com/regdata/ekw-ksiegi-wieczyste-scraper) | Property ownership, mortgages, restrictions |
| **CRBR** | [Beneficial Owners](https://apify.com/regdata/crbr-beneficial-owners-scraper) | UBO verification by NIP/KRS |
| **UOKiK** | [Abusive Clauses](https://apify.com/regdata/uokik-clauses-scraper) | 7,500+ banned contract clauses |
| **BDO** | [Waste Registry](https://apify.com/regdata/bdo-waste-registry-scraper) | 674,000+ waste management entities |

> **Full suite**: [apify.com/regdata](https://apify.com/regdata)

### Informacje po polsku

#### Czym jest ten aktor?

Ten aktor umozliwia automatyczne przeszukiwanie **rejestrow KNF** - Komisji Nadzoru Finansowego - obejmujacych trzy kluczowe bazy: rejestr instytucji platniczych i pieniadza elektronicznego (e-rup), rejestr posrednikow kredytowych i instytucji pozyczkowych (rpkip) oraz **rejestr lombardow** (rdl). Zaden z tych rejestrow nie udostepnia publicznego API. Ten aktor odpytuje wewnetrzne endpointy JSON portali KNF i zwraca dane w ustrukturyzowanym formacie - umozliwiajac **weryfikacje licencji KNF** bez recznego przeszukiwania trzech osobnych portali.

#### Dla kogo?

Narzedzie jest przeznaczone przede wszystkim dla **dzialow compliance** w bankach i instytucjach finansowych, ktore musza weryfikowac, czy dany podmiot posiada wymagane zezwolenie KNF. Korzystaja z niego **firmy fintechowe** sprawdzajace status regulacyjny partnerow i konkurentow, specjalisci ds. compliance realizujacy procedury KYC/AML, analitycy ryzyka kredytowego oceniajacy instytucje pozyczkowe, a takze prawnicy i kancelarie prawne weryfikujace legalnosc dzialalnosci finansowej klientow.

#### Co mozna sprawdzic?

Aktor obsluguje wyszukiwanie po nazwie podmiotu lub NIP w trzech rejestrach jednoczesnie. Mozesz filtrowac wyniki po typie podmiotu - **instytucje platnicze**, instytucje pieniadza elektronicznego, SKOK-i, **posrednicy kredytowi**, **instytucje pozyczkowe**, posrednicy hipoteczni czy operatorzy lombardow. Mozesz tez wyeksportowac caly rejestr do wlasnej bazy danych. Kazdy wynik zawiera nazwe, NIP, numer rejestrowy, adres, status wpisu oraz date rejestracji.

#### Jak zaczac?

Uruchom aktora na platformie Apify, podajac nazwe firmy, NIP lub wybrany typ podmiotu. Dla **compliance KNF** mozesz zintegrowac go ze swoim systemem przez Apify API i automatycznie weryfikowac licencje podmiotow finansowych. Brak subskrypcji - w odroznieniu od komercyjnych dostawcow danych regulacyjnych, takich jak MGBI czy Transparent Data, placisz wylacznie za faktyczne uzycie, co sprawdza sie szczegolnie przy jednorazowych weryfikacjach i projektach proof-of-concept.

### Limitations

- **Insurance intermediaries** (rpu.knf.gov.pl) are not covered - that portal is protected by reCAPTCHA
- Results depend on KNF's data freshness - registries are updated by KNF staff
- Entity detail pages (services, agents, branches) are not fetched in this version

***

### Rejestry KNF - instytucje platnicze i posrednicy kredytowi

Eksport danych z rejestrów Komisji Nadzoru Finansowego (KNF). Instytucje platnicze, wydawcy pieniadza elektronicznego, posrednicy kredytowi, firmy pozyczkowe i lombardy. Wyszukiwanie po nazwie, NIP lub typie podmiotu. Ponad 75 000 podmiotów. Eksport zbiorczy do JSON. Bez wymaganej autoryzacji.

# Actor input Schema

## `registry` (type: `string`):

Which KNF registry to search. e-rup = payment/e-money institutions (~17k entities), rpkip = credit intermediaries & lending institutions (~58k entities), rdl = pawnbroking activities (~250 entities), all = search all three.

## `name` (type: `string`):

Search by entity/company name (partial match, case-insensitive)

## `nip` (type: `string`):

Search by Polish Tax Identification Number (NIP) — exact match

## `entityType` (type: `string`):

Filter by entity type code. e-rup: PSD\_PI, PSD\_EMI, PSD\_ENL, PSD\_EPI@BP, PSD\_EPI@MIP, PSD\_AISP, PSD\_AG, PSD\_BR. rpkip: RPH, RPK, RHA, RIP. Leave empty for all types.

## `exportAll` (type: `boolean`):

Export all records from the selected registry. Ignores name/NIP/entityType filters. Use for bulk data extraction.

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

Maximum number of results to return. Default: 100. Set to 0 for unlimited (use with Export All for full registry dump).

## Actor input object example

```json
{
  "registry": "all",
  "name": "PayU",
  "exportAll": false,
  "maxResults": 100
}
```

# Actor output Schema

## `entityRecords` (type: `string`):

KNF-supervised financial entities with name, registry number, NIP, type, status, address, and registration date.

# 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 = {
    "name": "PayU"
};

// Run the Actor and wait for it to finish
const run = await client.actor("regdata/knf-registry-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 = { "name": "PayU" }

# Run the Actor and wait for it to finish
run = client.actor("regdata/knf-registry-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 '{
  "name": "PayU"
}' |
apify call regdata/knf-registry-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Poland KNF Financial Registry Scraper",
        "description": "Extract payment institutions, e-money issuers, credit intermediaries, lending companies & pawnbroking operators from 3 Polish KNF registries. Search by name, NIP, entity type. Bulk export 75,000+ entities. Structured JSON. No auth needed.",
        "version": "1.0",
        "x-build-id": "uAi9FuAcM7WznXjJm"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/regdata~knf-registry-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-regdata-knf-registry-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/regdata~knf-registry-scraper/runs": {
            "post": {
                "operationId": "runs-sync-regdata-knf-registry-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/regdata~knf-registry-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-regdata-knf-registry-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": {
                    "registry": {
                        "title": "Registry",
                        "enum": [
                            "e-rup",
                            "rpkip",
                            "rdl",
                            "all"
                        ],
                        "type": "string",
                        "description": "Which KNF registry to search. e-rup = payment/e-money institutions (~17k entities), rpkip = credit intermediaries & lending institutions (~58k entities), rdl = pawnbroking activities (~250 entities), all = search all three.",
                        "default": "all"
                    },
                    "name": {
                        "title": "Entity Name",
                        "type": "string",
                        "description": "Search by entity/company name (partial match, case-insensitive)"
                    },
                    "nip": {
                        "title": "NIP Number",
                        "type": "string",
                        "description": "Search by Polish Tax Identification Number (NIP) — exact match"
                    },
                    "entityType": {
                        "title": "Entity Type Code",
                        "type": "string",
                        "description": "Filter by entity type code. e-rup: PSD_PI, PSD_EMI, PSD_ENL, PSD_EPI@BP, PSD_EPI@MIP, PSD_AISP, PSD_AG, PSD_BR. rpkip: RPH, RPK, RHA, RIP. Leave empty for all types."
                    },
                    "exportAll": {
                        "title": "Export All Records",
                        "type": "boolean",
                        "description": "Export all records from the selected registry. Ignores name/NIP/entityType filters. Use for bulk data extraction.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of results to return. Default: 100. Set to 0 for unlimited (use with Export All for full registry dump).",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
