# NYC Property Sales Scraper | DOF Rolling Sales Data (`parseforge/nyc-property-sales-scraper`) Actor

Export NYC property sales records from the Department of Finance: address, borough, neighborhood, building class, sale price, sale date, residential/commercial units and gross square feet. Filter by borough. CSV, Excel, JSON or XML.

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

## Pricing

from $19.00 / 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)

## 🏙️ NYC Property Sales Scraper

> 🚀 **Export NYC Department of Finance rolling property sales: address, borough, building class, sale price, sale date, units and square footage.**

> 🕒 **Last updated:** 2026-05-25 · **📊 24 fields** per record · **🏙️ NYC · 5 boroughs** · **Rolling 12-month property sales, all boroughs**

The NYC Property Sales Scraper extracts records from the official NYC Department of Finance Rolling Sales dataset. Each record includes borough, neighborhood, building class category, tax class, block, lot, building class, address, apartment number, ZIP, residential/commercial/total units, land and gross square footage, year built, sale price and sale date - exported as CSV, Excel, JSON, or XML.

The scraper supports filtering by borough code (1=Manhattan, 2=Bronx, 3=Brooklyn, 4=Queens, 5=Staten Island). Coverage includes the trailing 12 months of recorded sales.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| Real estate investors, brokers, appraisers, mortgage analysts, urban planners, journalists | Comparable sales, market analysis, investment underwriting, lead generation, neighborhood research |

### 📋 What the NYC Property Sales Scraper does

- Connects to the official NYC Department of Finance - Rolling Sales dataset.
- Paginates through every record matching your filters.
- Normalises each record into a flat, analysis-ready row.
- Exports as CSV, Excel, JSON or XML - directly from your Apify dataset.
- Refreshes on demand or on schedule (hourly, daily, weekly).

> 💡 **Why it matters:** stop copy-pasting from a portal that paginates 100 records at a time. One click, full dataset, your format.

### 🎬 Full Demo

_🚧 Coming soon_

### ⚙️ Input

<table>
<thead><tr><th>Field</th><th>Type</th><th>Description</th></tr></thead>
<tbody>
<tr><td>maxItems</td><td>integer</td><td>Max sales records. Free: 10. Paid: up to 1,000,000.</td></tr>
<tr><td>borough</td><td>string (enum)</td><td>1 Manhattan · 2 Bronx · 3 Brooklyn · 4 Queens · 5 Staten Island</td></tr>
</tbody>
</table>

**Example 1 - Recent Manhattan sales**
```json
{
  "maxItems": 500,
  "borough": "1"
}
````

**Example 2 - All boroughs**

```json
{
  "maxItems": 1000
}
```

> ⚠️ **Good to Know:** free users are capped at 10 records per run as a preview. Upgrade to any paid plan to unlock full exports (up to 1,000,000 records). Data is collected directly from the official public source - no login or API key required.

### 📊 Output

| Field | Type | Description |
|---|---|---|
| 🖼 imageUrl | `string` | Always null |
| 📌 title | `string` | Property address |
| 🔗 url | `string` | Source dataset URL |
| 🆔 id | `string` | Block-based identifier |
| 🗺 borough | `string` | Borough code (1-5) |
| 🏘 neighborhood | `string` | Neighborhood |
| 🏠 building\_class\_category | `string` | Building class category |
| 🏷 tax\_class\_at\_present | `string` | Current tax class |
| 🔢 block | `string` | Tax block |
| 🔢 lot | `string` | Tax lot |
| 🏠 building\_class\_at\_present | `string` | Building class code |
| 📍 address | `string` | Street address |
| 🚪 apartment\_number | `string` | Apartment number (nullable) |
| 📮 zip\_code | `string` | ZIP code |
| 🏠 residential\_units | `integer` | Residential units |
| 🏬 commercial\_units | `integer` | Commercial units |
| 🔢 total\_units | `integer` | Total units |
| 📐 land\_square\_feet | `integer` | Land sq. ft. |
| 📐 gross\_square\_feet | `integer` | Gross sq. ft. |
| 📅 year\_built | `integer` | Year built |
| 💰 sale\_price | `integer` | Sale price (USD) |
| 📅 sale\_date | `string` | Sale date |
| 🕒 scrapedAt | `string` | ISO scrape timestamp |
| ❌ error | `string` | Populated on failure |

**Sample record (real run output):**

```json
{
  "title": "24-31 DEERFIELD ROAD",
  "url": "https://data.cityofnewyork.us/City-Government/NYC-Citywide-Rolling-Calendar-Sales/usep-8jbt",
  "id": "15776",
  "borough": "4",
  "neighborhood": "FAR ROCKAWAY",
  "building_class_category": "01 ONE FAMILY DWELLINGS",
  "block": "15776",
  "lot": "9",
  "address": "24-31 DEERFIELD ROAD",
  "zip_code": "11691",
  "residential_units": 1,
  "commercial_units": 0,
  "total_units": 1,
  "land_square_feet": 2129,
  "gross_square_feet": 1188,
  "year_built": 1940,
  "sale_price": 360000,
  "sale_date": "2026-03-31T00:00:00.000",
  "scrapedAt": "2026-05-25T22:25:54.643Z",
  "error": null
}
```

### ✨ Why choose this Actor

| ✅ | What you get |
|---|---|
| 🎯 | Direct extraction from the official NYC Department of Finance - Rolling Sales portal |
| 📊 | 24 normalised fields per record |
| ⚡ | Run on-demand or on schedule |
| 📁 | CSV, Excel, JSON, XML - your choice |
| 🔌 | Integrates with Make, Zapier, Slack, Airbyte, Google Drive |
| 🆓 | Free preview (10 records) - no credit card |
| 🌍 | Public data only - no login or API key required |
| 🚀 | Maintained and updated as the source schema evolves |

### 📈 How it compares to alternatives

| Approach | Speed | Maintenance | Cost | Export formats |
|---|---|---|---|---|
| Copy-paste from portal | 🐌 Hours | 🛠 High | Free | Limited |
| Build your own scraper | 🐢 Days | 🛠 Ongoing | Dev time | DIY |
| Generic SaaS scraper | 🚶 Slow | 🛠 Manual config | $$$ | Generic |
| **This Actor** | 🚀 **Minutes** | ✅ **Maintained** | 💸 **From free** | **CSV / Excel / JSON / XML** |

### 🚀 How to use

1. [Create a free Apify account with $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp) - no credit card required.
2. Open the **NYC Property Sales Scraper** page in Apify Store and click **Try for free**.
3. Configure the input (see Input section above).
4. Click **Start** - the run will produce a downloadable dataset.
5. Export as CSV, Excel, JSON or XML, or stream to your destination via integrations.

### 💼 Business use cases

#### Lead generation & sales

| 🎯 | Example |
|---|---|
| 📞 | Build target lists filtered by category, region, or status |
| 🧠 | Enrich CRM records with up-to-date public attributes |

#### Compliance & risk

| 🎯 | Example |
|---|---|
| 🔍 | Continuous monitoring of changes in official records |
| 📋 | Audit-trail-friendly exports for compliance teams |

#### Market research

| 🎯 | Example |
|---|---|
| 📊 | Track market dynamics over time |
| 🌍 | Benchmark across regions, categories, or operators |

#### Operations & automation

| 🎯 | Example |
|---|---|
| 🔄 | Schedule recurring pulls and pipe straight into your BI tool |
| 🚨 | Alert on threshold or status changes |

### 🔌 Automating NYC Property Sales Scraper

- **Make** - receive new records into a scenario and route them anywhere.
- **Zapier** - trigger on new dataset rows and push to 6,000+ apps.
- **Slack** - post fresh records into a channel for the team.
- **Airbyte** - sync the dataset into your warehouse (BigQuery, Snowflake, Redshift, Postgres).
- **GitHub** - store snapshots in a repo for diffing over time.
- **Google Drive / Sheets** - auto-append rows to a spreadsheet.

### 🌟 Beyond business use cases

#### Research

- Academic studies on NYC Department of Finance - Rolling Sales trends, distributions and outliers.

#### Personal projects

- Hobbyist data viz, dashboards, blog posts and side-projects.

#### Non-profit

- Open-data journalism, transparency audits, civic-tech tools.

#### Experimentation

- Train ML models on a clean, structured slice of public data.

### 🤖 Ask an AI assistant about this scraper

- [ChatGPT](https://chat.openai.com)
- [Claude](https://claude.ai)
- [Perplexity](https://www.perplexity.ai)
- [Microsoft Copilot](https://copilot.microsoft.com)

Paste this README into any of them and ask: *"How would I use the NYC Property Sales Scraper to solve X?"*

### ❓ Frequently Asked Questions

#### ❓ Is the data accurate?

Yes - the scraper pulls directly from the official NYC Department of Finance - Rolling Sales public dataset. Accuracy mirrors the source.

#### ❓ Do I need an API key or login?

No. Everything is public data. Just run the actor.

#### ❓ How fresh is the data?

Each run fetches the latest available records from data.cityofnewyork.us at request time.

#### ❓ How many records can I export?

Free users: 10 (preview). Paid users: up to 1,000,000 per run.

#### ❓ Can I export to Excel?

Yes - choose CSV, Excel, JSON or XML on the dataset page.

#### ❓ Can I schedule recurring runs?

Yes - Apify Schedules supports hourly/daily/weekly/cron. Pair with integrations for auto-delivery.

#### ❓ Is this affiliated with NYC Department of Finance - Rolling Sales?

No. This is an independent tool that exposes publicly available data via a structured interface.

#### ❓ What happens if the source goes down?

The actor surfaces a clean error record. Re-run when the source is back up.

#### ❓ Can I filter the output?

Yes - the input section above lists every supported filter, exposed as a typed input field.

#### ❓ Can I use it for commercial purposes?

Yes, subject to the source dataset's terms of use. Always review the original publisher's license.

#### ❓ Where can I get help?

[Open our contact form](https://tally.so/r/BzdKgA) - we usually respond within one business day.

### 🔌 Integrate with any app

Make · Zapier · Slack · Airbyte · GitHub · Google Drive · Google Sheets · BigQuery · Snowflake · Redshift · Postgres · MySQL · MongoDB · Kafka · Webhooks · REST API.

### 🔗 Recommended Actors

| Actor | What it does |
|---|---|
| [OurAirports Global Airport Database Scraper](https://apify.com/parseforge/ourairports-scraper) | Worldwide airport reference dataset |
| [FINRA BrokerCheck Scraper](https://apify.com/parseforge/finra-brokercheck-scraper) | US broker & advisor licensing records |
| [FAA Aircraft Registry Scraper](https://apify.com/parseforge/faa-aircraft-registry-scraper) | US civil aircraft registration records |
| [SEC EDGAR Filings Scraper](https://apify.com/parseforge/sec-edgar-scraper) | Public company filings & financials |

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for 50+ data-export actors.

**🆘 Need Help?** [Open our contact form](https://tally.so/r/BzdKgA)

> **⚠️ Disclaimer:** This is an independent tool and is not affiliated with, endorsed by, or sponsored by NYC Department of Finance - Rolling Sales. It only collects publicly available data published by the source. Always review the source's terms of use before commercial deployment.

# Actor input Schema

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

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

## `borough` (type: `string`):

Filter to one borough by code (1=Manhattan, 2=Bronx, 3=Brooklyn, 4=Queens, 5=Staten Island).

## Actor input object example

```json
{
  "maxItems": 10
}
```

# Actor output Schema

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

Scraped NYC Property Sales records

# 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/nyc-property-sales-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/nyc-property-sales-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/nyc-property-sales-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "NYC Property Sales Scraper | DOF Rolling Sales Data",
        "description": "Export NYC property sales records from the Department of Finance: address, borough, neighborhood, building class, sale price, sale date, residential/commercial units and gross square feet. Filter by borough. CSV, Excel, JSON or XML.",
        "version": "0.1",
        "x-build-id": "veLfaAr2hPZTxidCY"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~nyc-property-sales-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-nyc-property-sales-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~nyc-property-sales-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-nyc-property-sales-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~nyc-property-sales-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-nyc-property-sales-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"
                    },
                    "borough": {
                        "title": "Borough",
                        "enum": [
                            "",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "type": "string",
                        "description": "Filter to one borough by code (1=Manhattan, 2=Bronx, 3=Brooklyn, 4=Queens, 5=Staten Island)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
