# NPI Registry Scraper (`parseforge/npi-registry-scraper`) Actor

Query the NPI registry by name, organization, number, taxonomy, city, state, or postal code. Records include NPI, enumeration type, name, credential, gender, taxonomy, license, address, phone, fax, enumeration date, last updated, and status. Useful for healthcare lead generation.

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

## Pricing

from $7.50 / 1,000 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

![ParseForge Banner](https://github.com/ParseForge/apify-assets/blob/ad35ccc13ddd068b9d6cba33f323962e39aed5b2/banner.jpg?raw=true)

## 🩺 NPI Registry Scraper

> 🚀 **Export U.S. National Provider Identifier (NPI) registry data in seconds. Provider name, taxonomy, address, phone, and credentials.**

> 🕒 **Last updated:** 2026-06-05 · **📊 20 fields** per record · 8 million+ U.S. healthcare providers · Public CMS API

The NPI Registry Scraper turns the public `npiregistry.cms.hhs.gov/api/` endpoint into a structured dataset. It runs an NPPES search with the filters you provide (name, taxonomy, city, state, ZIP, NPI number) and returns one flat record per provider with the primary location and primary taxonomy already extracted.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| 🏥 Healthcare BD teams | Build provider outreach lists |
| 💊 Pharma sales | Map prescribers by specialty and territory |
| 🛡️ Compliance | Verify a clinician's NPI before claims |
| 📊 Analysts | Map provider density by ZIP |
| 🧪 Researchers | Study U.S. healthcare workforce trends |
| 👩‍💻 Developers | Mirror NPPES into your CRM |

### 📋 What the NPI Registry Scraper does

- Calls the public NPPES `/api/` endpoint with version 2.1.
- Forwards every supported filter (name, organization, taxonomy, address, NPI number, enumeration type).
- Extracts the primary location address and primary taxonomy into top-level fields.
- Paginates through the NPPES result window (up to 1,200 records per query).
- Surfaces upstream errors as a single diagnostic record.
- Exports to every Apify dataset format.

> 💡 **Why it matters:** NPPES is the canonical source of U.S. provider identifiers, but its API returns deeply nested addresses and taxonomies. This actor flattens both into the fields your CRM expects.

### 🎬 Full Demo

_🚧 Coming soon._

### ⚙️ Input

<table>
<tr><th>Field</th><th>Type</th><th>Required</th><th>Description</th></tr>
<tr><td><code>maxItems</code></td><td>integer</td><td>No</td><td>Free 10. Paid up to 1,000,000.</td></tr>
<tr><td><code>firstName</code> / <code>lastName</code></td><td>string</td><td>No</td><td>Individual provider name.</td></tr>
<tr><td><code>organizationName</code></td><td>string</td><td>No</td><td>NPI-2 organization name.</td></tr>
<tr><td><code>number</code></td><td>string</td><td>No</td><td>Exact 10-digit NPI lookup.</td></tr>
<tr><td><code>taxonomyDescription</code></td><td>string</td><td>No</td><td>Specialty such as `Cardiology` or `Pharmacist`.</td></tr>
<tr><td><code>city</code> / <code>state</code> / <code>postalCode</code></td><td>string</td><td>No</td><td>Practice location.</td></tr>
<tr><td><code>enumerationType</code></td><td>enum</td><td>No</td><td>NPI-1 individual or NPI-2 organization.</td></tr>
</table>

**Example 1. California dentists.**
```json
{ "taxonomyDescription": "Dentist", "state": "CA", "maxItems": 50 }
````

**Example 2. Exact NPI lookup.**

```json
{ "number": "1234567893" }
```

> ⚠️ **Good to Know:** NPPES caps a single query at 1,200 results. Narrow your filters to get the rows you want.

### 📊 Output

| Field | Type | Description |
|---|---|---|
| 🆔 `npi` | string | 10-digit NPI. |
| 🏷️ `enumerationType` | string | NPI-1 or NPI-2. |
| 👤 `name` | string | Provider or organization name. |
| 🎓 `credential` | string | Credential text. |
| ⚧ `gender` | string | M or F (individuals). |
| 🪪 `soleProprietor` | string | Sole proprietor flag. |
| 🩺 `taxonomy` | string | Primary taxonomy description. |
| 🔢 `taxonomyCode` | string | Primary taxonomy code. |
| 🏛️ `taxonomyState` | string | State of primary license. |
| 🪪 `taxonomyLicense` | string | License number. |
| 📍 `address` | string | Primary location address. |
| 📞 `phone` | string | Primary phone. |
| 📠 `fax` | string | Primary fax. |
| 📅 `enumerationDate` | string | When NPI was issued. |
| 🕒 `lastUpdated` | string | Latest NPPES update. |
| ✅ `status` | string | Active or deactivated. |
| 📍 `addresses` | array | Full address array. |
| 🩺 `taxonomies` | array | Full taxonomy array. |
| 🆔 `identifiers` | array | Other identifiers. |
| 🕒 `scrapedAt` | string | When this row was fetched. |
| ❌ `error` | string | Set on upstream error. |

```json
{
  "npi": "1234567893",
  "name": "Jane Doe",
  "credential": "MD",
  "taxonomy": "Internal Medicine",
  "address": "123 Main St, Sacramento, CA, 95814",
  "phone": "916-555-0100",
  "scrapedAt": "2026-06-05T12:00:00.000Z",
  "error": null
}
```

### ✨ Why choose this Actor

| 🆓 | Public CMS endpoint, no key required. |
| 🩺 | Primary location and taxonomy already flattened. |
| 🔎 | Every NPPES filter exposed. |
| 🛟 | Clean diagnostic records on errors. |
| 💾 | Push to dataset for instant export. |

### 📈 How it compares to alternatives

| Approach | Setup | Filters | Flattening | Auto export |
|---|---|---|---|---|
| NPPES website | manual | manual | manual | ❌ |
| Roll your own fetch | 30 min + | manual | manual | manual |
| **This Actor** | 5 sec | ✅ | ✅ | ✅ |

### 🚀 How to use

1. Click **Try for free**.
2. Provide at least one filter (name, NPI, taxonomy, or address).
3. Click **Start** and download the dataset.

### 💼 Business use cases

**🏥 Outreach lists.** Build a targeted prospect list of cardiologists in the Northeast.

**💊 Pharma territory mapping.** Cross-reference NPI density against sales rep coverage.

**🛡️ Claims compliance.** Validate billing NPIs before submission.

**📊 Workforce analytics.** Snapshot specialty supply by state.

### 🔌 Automating NPI Registry Scraper

- **Make and Zapier** trigger this actor on schedule or on demand.
- **Cron** keeps your mirror fresh.
- **Webhooks** notify on completion.
- **Pipe to BigQuery, Snowflake, or Postgres** with native integrations.

### 🌟 Beyond business use cases

**🎓 Education.** Teach health-IT classes with real NPI data.

**🧪 Personal research.** Look up a clinician's credentials.

**🤝 Non-profit and open data.** Publish provider-density dashboards.

**🧰 Tinkering.** Spot-check a single NPI.

### 🤖 Ask an AI assistant about this scraper

Pop this README into ChatGPT, Claude, or any AI assistant and ask it to map your specific workflow to the actor's inputs.

### ❓ Frequently Asked Questions

**❓ Need an API key?** No.

**❓ Source?** Official NPPES API hosted by CMS.

**❓ Schedule runs?** Yes.

**❓ Rate limits?** NPPES caps a single query at 1,200 rows; narrow filters to paginate beyond that.

**❓ API or scraping?** API.

**❓ Schema stability?** Stable.

**❓ Maximum run?** 1,000,000 records on paid plans.

**❓ Both NPI-1 and NPI-2?** Yes.

**❓ Taxonomy detail?** Primary flattened plus full array.

**❓ Download formats?** Any Apify dataset format.

### 🔌 Integrate with any app

Apify ships native integrations with Make, Zapier, Slack, Discord, Google Drive, Google Sheets, Gmail, Airbyte, Keboola, Telegram, GitHub, and any REST API or webhook endpoint.

### 🔗 Recommended Actors

| Actor | What it does |
|---|---|
| [ParseForge ChEMBL Targets Scraper](https://apify.com/parseforge) | Drug-target metadata. |
| [ParseForge ChEMBL Assays Scraper](https://apify.com/parseforge) | Bioactivity assay metadata. |
| [ParseForge Alpha Vantage Scraper](https://apify.com/parseforge) | Public market data. |
| [ParseForge OurAirports Scraper](https://apify.com/parseforge/ourairports-scraper) | Global airport database. |

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for 900+ production-grade scrapers.

***

**Disclaimer.** This actor scrapes only publicly available data. ParseForge is not affiliated with, endorsed by, or sponsored by the Centers for Medicare and Medicaid Services. Users are responsible for complying with the target site's terms of service and applicable law. [Create a free account w/ $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp).

# Actor input Schema

## `maxItems` (type: `integer`):

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## `firstName` (type: `string`):

First name of an individual provider (NPI-1 lookup).

## `lastName` (type: `string`):

Last name of an individual provider.

## `organizationName` (type: `string`):

Organization name for NPI-2 lookups.

## `number` (type: `string`):

Exact 10-digit NPI to look up.

## `taxonomyDescription` (type: `string`):

Taxonomy description (e.g. `Dentist`, `Cardiology`, `Pharmacist`).

## `city` (type: `string`):

Practice city.

## `state` (type: `string`):

Two-letter US state code (e.g. `CA`, `NY`).

## `postalCode` (type: `string`):

US ZIP code.

## `enumerationType` (type: `string`):

NPI-1 individual or NPI-2 organization.

## Actor input object example

```json
{
  "maxItems": 10,
  "state": "",
  "enumerationType": ""
}
```

# Actor output Schema

## `results` (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 = {
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/npi-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 = { "maxItems": 10 }

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "NPI Registry Scraper",
        "description": "Query the NPI registry by name, organization, number, taxonomy, city, state, or postal code. Records include NPI, enumeration type, name, credential, gender, taxonomy, license, address, phone, fax, enumeration date, last updated, and status. Useful for healthcare lead generation.",
        "version": "0.1",
        "x-build-id": "cdKAOeTm3H6EsyuE3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~npi-registry-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-npi-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/parseforge~npi-registry-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-npi-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/parseforge~npi-registry-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-npi-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": {
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
                    },
                    "firstName": {
                        "title": "First name",
                        "type": "string",
                        "description": "First name of an individual provider (NPI-1 lookup)."
                    },
                    "lastName": {
                        "title": "Last name",
                        "type": "string",
                        "description": "Last name of an individual provider."
                    },
                    "organizationName": {
                        "title": "Organization name",
                        "type": "string",
                        "description": "Organization name for NPI-2 lookups."
                    },
                    "number": {
                        "title": "NPI number",
                        "type": "string",
                        "description": "Exact 10-digit NPI to look up."
                    },
                    "taxonomyDescription": {
                        "title": "Taxonomy description",
                        "type": "string",
                        "description": "Taxonomy description (e.g. `Dentist`, `Cardiology`, `Pharmacist`)."
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "Practice city."
                    },
                    "state": {
                        "title": "State",
                        "enum": [
                            "",
                            "AL",
                            "AK",
                            "AZ",
                            "AR",
                            "CA",
                            "CO",
                            "CT",
                            "DE",
                            "FL",
                            "GA",
                            "HI",
                            "ID",
                            "IL",
                            "IN",
                            "IA",
                            "KS",
                            "KY",
                            "LA",
                            "ME",
                            "MD",
                            "MA",
                            "MI",
                            "MN",
                            "MS",
                            "MO",
                            "MT",
                            "NE",
                            "NV",
                            "NH",
                            "NJ",
                            "NM",
                            "NY",
                            "NC",
                            "ND",
                            "OH",
                            "OK",
                            "OR",
                            "PA",
                            "RI",
                            "SC",
                            "SD",
                            "TN",
                            "TX",
                            "UT",
                            "VT",
                            "VA",
                            "WA",
                            "WV",
                            "WI",
                            "WY",
                            "DC",
                            "PR",
                            "VI",
                            "GU",
                            "AS",
                            "MP"
                        ],
                        "type": "string",
                        "description": "Two-letter US state code (e.g. `CA`, `NY`).",
                        "default": ""
                    },
                    "postalCode": {
                        "title": "Postal code",
                        "type": "string",
                        "description": "US ZIP code."
                    },
                    "enumerationType": {
                        "title": "Enumeration type",
                        "enum": [
                            "",
                            "NPI-1",
                            "NPI-2"
                        ],
                        "type": "string",
                        "description": "NPI-1 individual or NPI-2 organization.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
