# Zillow Property Scraper (`rna1h/zillow-property-scraper`) Actor

Scrape Zillow property listings by URL, zpid, or address. Get price, beds, baths, photos, price & tax history, schools & agent contacts as JSON, CSV, or Excel.

- **URL**: https://apify.com/rna1h/zillow-property-scraper.md
- **Developed by:** [Rahul Nath](https://apify.com/rna1h) (community)
- **Categories:** Real estate, Lead generation, Automation
- **Stats:** 3 total users, 2 monthly users, 88.3% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## 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

## Zillow Property Scraper 🏡

**Scrape Zillow property listings at scale — no Zillow API key required.** Feed in Zillow
property URLs or IDs and get clean, structured data back: price, beds, baths, square footage,
photos, price & tax history, nearby schools, and listing agent contacts. Export to **JSON, CSV,
or Excel**, or pull it straight from the API.

Fast and cheap by design — no heavy browser rendering and no per-page captcha solving.

---

### ⚡ What this Zillow scraper does

- 🏠 **Extract full Zillow listing data** — for-sale, for-rent, and sold properties.
- 📇 **Capture agent & broker contacts** — names, phone numbers, brokerage.
- 🖼️ **Grab every listing photo** in full resolution.
- 📈 **Pull price history, tax history, and Zestimate®** for valuation and comps.
- 🎓 **Include nearby schools** with ratings and distances.
- 🧱 **Resilient extraction** — reads Zillow's own data model, so it survives layout tweaks.
- ⚡ **Fast & cheap** — lightweight requests, no browser; tiny proxy usage per property.
- 📤 **Export anywhere** — JSON, CSV, Excel, or the Apify dataset API.

### 📊 What Zillow data can I scrape?

Each result is the **full, raw Zillow property object** — every native field Zillow's own
frontend receives. That includes, among 100+ fields:

| Category | Fields |
|---|---|
| **Identity** | `zpid`, `maloneId`, `homeStatus`, `homeType`, `listingDataSource` |
| **Pricing** | `price`, `currency`, `zestimate`, `rentZestimate` |
| **Size & layout** | `bedrooms`, `bathrooms`, `livingArea`, `lotSize`, `yearBuilt`, `resoFacts` |
| **Location** | `address` (street/city/state/zip/neighborhood), `latitude`, `longitude`, `county` |
| **Media** | `responsivePhotos[]` (full `mixedSources` jpeg + webp at every resolution) |
| **History** | `priceHistory[]`, `taxHistory[]` |
| **Neighborhood** | `schools[]`, walk/transit scores |
| **Listing** | `description`, `daysOnZillow`, `mlsid`, `parcelId` |
| **Contacts** | `attributionInfo` (agent/broker name, phone, brokerage) |

### 💡 What can I use Zillow data for?

- Build a real-estate lead list of listing agents and brokers.
- Track price drops and market trends across a ZIP code or metro.
- Feed valuation / comps models and investment dashboards.
- Sync live listings into a CRM, spreadsheet, or internal portal.
- Power a property search app without paying for the official Zillow API.

---

### 🚀 How to use the Zillow Property Scraper

The scraper pulls each listing's full data efficiently over plain HTTP — no browser rendering — so
it's fast and extremely cheap: a few KB per property instead of megabytes of a rendered page.

Zillow is protected by **PerimeterX**, so requests need to come from a clean IP. Pair the scraper
with **Apify Residential proxies**; because traffic is tiny, the residential cost is minimal and a
free plan's monthly credit stretches to thousands of listings.

You can start from any of three inputs — mix and match them freely:

- **Property URLs** — full Zillow `homedetails` links
- **ZPIDs** — Zillow property IDs
- **Addresses** — plain addresses, resolved to properties automatically. **Use the full address**
  (street + unit + city + state + zip) for an exact match; partial addresses resolve to Zillow's
  best guess (which may be a nearby/wrong property). The matched address is logged for each run.

Then:

1. Add your **URLs**, **zpids**, and/or **addresses**.
2. Set **Proxy configuration → Residential (US)**.
3. Click **Start**.

> **Note on proxies:** the shared residential pool contains some IPs already flagged for Zillow,
> so a request may take a few automatic retries to land on a clean IP. For instant, first-try
> success (like paid commercial scrapers), plug in your own dedicated residential proxies.

#### ⬇️ Input example

```json
{
  "urls": [
    "https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"
  ],
  "zpids": ["2069473617"],
  "addresses": ["1122 N Dubuque St #1136-8, Iowa City, IA 52245"],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  },
  "maxItems": 100,
  "maxConcurrency": 5
}
````

#### ⬆️ Output example

Each dataset item is the complete raw Zillow property object (100+ fields). Abbreviated:

```json
{
  "zpid": 2069473617,
  "maloneId": "2548128478",
  "city": "Iowa City",
  "state": "IA",
  "homeStatus": "OTHER",
  "address": {
    "streetAddress": "1122 N Dubuque St #1136-8",
    "city": "Iowa City",
    "state": "IA",
    "zipcode": "52245"
  },
  "bedrooms": 3,
  "bathrooms": 2,
  "price": 0,
  "streetAddress": "1122 N Dubuque St #1136-8",
  "zipcode": "52245",
  "listingDataSource": "Legacy",
  "responsivePhotos": [
    {
      "caption": "",
      "url": "https://photos.zillowstatic.com/fp/....jpg",
      "mixedSources": {
        "jpeg": [{ "url": "...-cc_ft_192.jpg", "width": 192 }, "... up to 1536" ],
        "webp": [{ "url": "...-cc_ft_192.webp", "width": 192 }, "... up to 1536" ]
      }
    }
  ],
  "priceHistory": [ ... ],
  "taxHistory": [ ... ],
  "schools": [ ... ],
  "resoFacts": { ... },
  "attributionInfo": { "agentName": "...", "agentPhoneNumber": "...", "brokerName": "..." }
}
```

### ⚙️ Input reference

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `urls` | array | — | Zillow detail URLs (`.../homedetails/.../<zpid>_zpid/`) |
| `zpids` | array | — | Zillow property IDs; used to build URLs when you don't have the link |
| `addresses` | array | — | Plain property addresses; each is resolved to a property automatically |
| `proxyConfiguration` | object | Residential US | Residential proxies recommended — gives requests a clean IP |
| `maxItems` | integer | `0` | Cap the number of properties (`0` = no limit) |
| `maxConcurrency` | integer | `5` | Parallel requests |

***

### 🔌 Use it via API

Run the scraper and collect results from any language with the Apify client.

**JavaScript / TypeScript**

```js
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });

const run = await client.actor('YOUR_USERNAME/zillow-property-scraper').call({
    urls: ['https://www.zillow.com/homedetails/.../2069473617_zpid/'],
    proxyConfiguration: { useApifyProxy: true, apifyProxyGroups: ['RESIDENTIAL'] },
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

**Python**

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("YOUR_USERNAME/zillow-property-scraper").call(run_input={
    "urls": ["https://www.zillow.com/homedetails/.../2069473617_zpid/"],
    "proxyConfiguration": {"useApifyProxy": True, "apifyProxyGroups": ["RESIDENTIAL"]},
})

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

**CLI**

```bash
npx apify call YOUR_USERNAME/zillow-property-scraper \
  --input '{"urls":["https://www.zillow.com/homedetails/.../2069473617_zpid/"]}'
```

### 🔎 Getting zpids to scrape

This scraper works on **property pages**. To discover which properties to scrape, pair it with a
Zillow **search/map** step: run a location search to collect `zpids` (or full URLs), then feed
those into this actor. That gives you a complete *search → detail* pipeline.

***

### ❓ FAQ

**Do I need a Zillow API key?** No — just add URLs, zpids, or addresses and click Start.

**Can I scrape by address?** Yes. Put full addresses (street + unit + city + state + zip) in the
`addresses` field and each is resolved to its property automatically. The matched address is shown
in the run log so you can verify it.

**Why do I need proxies?** Zillow blocks datacenter and free-proxy IPs. Use Apify **Residential**
proxies so requests come from clean, real-visitor IPs. Traffic per property is tiny, so the cost
stays low.

**What does each result contain?** The complete raw Zillow property object — 100+ fields including
price, beds/baths, photos, price & tax history, schools, and agent/broker contacts.

**What formats can I export?** JSON, CSV, Excel, XML, or the dataset API.

**Is scraping Zillow legal?** This Actor collects only publicly available data. You are responsible
for complying with Zillow's Terms of Service and applicable laws, and for not misusing personal
data or redistributing copyrighted content (photos, descriptions) beyond permitted use.

***

### ⚠️ Disclaimer

This Actor is an independent tool and is **not affiliated with, endorsed by, or connected to
Zillow** in any way. "Zillow" and "Zestimate" are trademarks of their respective owners and are
used here only to describe what the Actor works with. Use it solely to collect publicly available
data in compliance with Zillow's Terms of Service and applicable laws.

### 💬 Support

Have a question, hit a bug, or need a custom scraping job? Open the **Issues** tab on this Actor's
page — happy to help.

# Actor input Schema

## `urls` (type: `array`):

List of Zillow property detail URLs, e.g. https://www.zillow.com/homedetails/.../2069473617\_zpid/

## `zpids` (type: `array`):

List of Zillow property IDs (zpid). Used to build detail URLs when you don't have the full link.

## `addresses` (type: `array`):

List of property addresses to look up and scrape. Use the FULL address (street + unit + city + state + zip) for an exact match — partial addresses resolve to Zillow's best guess, which may be a nearby or wrong property. The matched address is shown in the run log. Example: "1122 N Dubuque St #1136-8, Iowa City, IA 52245".

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

Residential proxies strongly recommended — Zillow blocks datacenter IPs. API mode uses very little proxy traffic (tiny JSON), so residential is cheap here.

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

Maximum number of properties to scrape. 0 means no limit.

## `maxConcurrency` (type: `integer`):

How many pages to fetch in parallel. Keep low to avoid blocking.

## Actor input object example

```json
{
  "urls": [
    "https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"
  ],
  "addresses": [
    "1122 N Dubuque St #1136-8, Iowa City, IA 52245"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "maxItems": 0,
  "maxConcurrency": 5
}
```

# Actor output Schema

## `properties` (type: `string`):

Full property records in the default dataset (JSON, CSV, Excel, or API).

# 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 = {
    "urls": [
        "https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"
    ],
    "addresses": [
        "1122 N Dubuque St #1136-8, Iowa City, IA 52245"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rna1h/zillow-property-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 = {
    "urls": ["https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"],
    "addresses": ["1122 N Dubuque St #1136-8, Iowa City, IA 52245"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("rna1h/zillow-property-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 '{
  "urls": [
    "https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"
  ],
  "addresses": [
    "1122 N Dubuque St #1136-8, Iowa City, IA 52245"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call rna1h/zillow-property-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zillow Property Scraper",
        "description": "Scrape Zillow property listings by URL, zpid, or address. Get price, beds, baths, photos, price & tax history, schools & agent contacts as JSON, CSV, or Excel.",
        "version": "0.1",
        "x-build-id": "7aNm3DukDoLxCjk4i"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/rna1h~zillow-property-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-rna1h-zillow-property-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/rna1h~zillow-property-scraper/runs": {
            "post": {
                "operationId": "runs-sync-rna1h-zillow-property-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/rna1h~zillow-property-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-rna1h-zillow-property-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": {
                    "urls": {
                        "title": "Property URLs",
                        "type": "array",
                        "description": "List of Zillow property detail URLs, e.g. https://www.zillow.com/homedetails/.../2069473617_zpid/",
                        "items": {
                            "type": "string"
                        }
                    },
                    "zpids": {
                        "title": "ZPIDs",
                        "type": "array",
                        "description": "List of Zillow property IDs (zpid). Used to build detail URLs when you don't have the full link.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "addresses": {
                        "title": "Addresses",
                        "type": "array",
                        "description": "List of property addresses to look up and scrape. Use the FULL address (street + unit + city + state + zip) for an exact match — partial addresses resolve to Zillow's best guess, which may be a nearby or wrong property. The matched address is shown in the run log. Example: \"1122 N Dubuque St #1136-8, Iowa City, IA 52245\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential proxies strongly recommended — Zillow blocks datacenter IPs. API mode uses very little proxy traffic (tiny JSON), so residential is cheap here.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of properties to scrape. 0 means no limit.",
                        "default": 0
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many pages to fetch in parallel. Keep low to avoid blocking.",
                        "default": 5
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
