# Zillow Rentals Scraper (`parseforge/zillow-rentals-scraper-ppe`) Actor

Extract rental listings from Zillow with prices, addresses, photos, bedrooms, bathrooms, and 38 property details. Search any US location for apartments, houses, and condos for rent.

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

## Pricing

from $20.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://raw.githubusercontent.com/ParseForge/apify-assets/main/banner.jpg)

## 🏠 Zillow Rentals Scraper

Whether you're a real estate investor tracking rental yields, a property manager monitoring market rates, or a data analyst studying housing trends, this actor makes it easy to extract rental listing data from Zillow at scale.

> **The Zillow Rentals Scraper extracts rental property listings from any US location on Zillow.com, with 38 data fields per listing, plus parallel page fetching for fast collection.**

### ✨ What Does It Do

- 🏠 **Complete rental data** - prices, bedrooms, bathrooms, square footage, and property type for every listing
- 📍 **Any US location** - search Los Angeles, New York, Miami, or any city, neighborhood, or ZIP code on Zillow
- 📸 **Full photo galleries** - every listing image URL, not just the thumbnail
- 🏢 **Building-level detail** - multi-unit apartment buildings broken down into individual units with per-unit pricing
- 💰 **Market intelligence** - rent Zestimates, Zestimates, days on market, and listing status
- ⚡ **Fast parallel collection** - fetches multiple pages simultaneously for rapid data gathering
- 🔗 **Direct listing links** - every result includes the full Zillow URL for easy verification

### 🎬 Demo Video

_Coming soon_

### 🔧 Input

**Zillow Rental Search URL** - Go to zillow.com, search for rentals in any area, apply filters (price range, bedrooms, pet-friendly, etc.), then paste the full URL from your browser. The scraper picks up all your filter settings automatically.

**Maximum Items** - How many rental listings to collect. Free users get up to 10 items as a preview. Paid users can collect up to 1,000,000 listings.

**Proxy Configuration** - Zillow requires residential proxies for reliable access. The default configuration uses Apify's US residential proxy pool, which works out of the box.

```json
{
    "listingUrl": "https://www.zillow.com/los-angeles-ca/rentals/",
    "maxItems": 100
}
````

### 📊 Output

| Field | Description |
|---|---|
| 🔗 url | Direct link to the Zillow listing |
| 🆔 zpid | Zillow's unique property identifier |
| 📍 address | Full street address |
| 🏙️ city | City name |
| 🗺️ state | Two-letter state code |
| 📮 zipCode | ZIP code |
| 💰 price | Monthly rent in USD |
| 💵 currency | Currency code (USD) |
| 🛏️ bedrooms | Number of bedrooms (0 = Studio) |
| 🛁 bathrooms | Number of bathrooms |
| 📐 livingArea | Square footage |
| 🌳 lotSize | Lot size in square feet |
| 🏠 propertyType | APARTMENT, HOUSE, CONDO, TOWNHOUSE, etc. |
| 📋 homeStatus | FOR\_RENT, etc. |
| 📊 listingStatus | Current listing status |
| 📅 daysOnZillow | Days since listed |
| 🌐 latitude | GPS latitude |
| 🌐 longitude | GPS longitude |
| 🖼️ imageUrl | Primary listing photo |
| 📸 imageUrls | All listing photos |
| 💎 rentZestimate | Zillow's estimated rent value |
| 💰 zestimate | Zillow's estimated property value |
| 📝 description | Listing description text |
| 🏢 brokerName | Listing broker or agent |
| 📅 yearBuilt | Year the property was built |
| 🚗 parking | Parking details |
| 🔥 heating | Heating system type |
| ❄️ cooling | Cooling system type |
| 🔌 appliances | Included appliances |
| 🐾 petPolicy | Pet policy details |
| 👕 laundry | Laundry facilities |
| 🏗️ buildingName | Apartment building name |
| 🚪 unitNumber | Unit number or identifier |
| 📆 availableFrom | Move-in availability date |
| 💳 depositMin | Minimum security deposit |
| 💳 depositMax | Maximum security deposit |
| 📋 leaseTerms | Lease term details |
| 🕐 scrapedAt | Timestamp of data collection |

```json
{
    "url": "https://www.zillow.com/homedetails/123-Main-St/12345_zpid/",
    "zpid": "12345",
    "address": "123 Main St, Los Angeles, CA 90001",
    "city": "Los Angeles",
    "state": "CA",
    "zipCode": "90001",
    "price": 2500,
    "currency": "USD",
    "bedrooms": 2,
    "bathrooms": 1,
    "livingArea": 950,
    "propertyType": "APARTMENT",
    "homeStatus": "FOR_RENT",
    "imageUrl": "https://photos.zillowstatic.com/fp/example.jpg",
    "imageUrls": ["https://photos.zillowstatic.com/fp/example.jpg"],
    "rentZestimate": 2400,
    "buildingName": "",
    "scrapedAt": "2026-04-01T12:00:00.000Z"
}
```

### 💎 Why Choose the Zillow Rentals Scraper?

| Feature | Our Actor | Alternatives |
|---|---|---|
| Output fields | 38 fields | 10-20 fields |
| Building unit breakdown | ✅ Per-unit pricing | ❌ Building-level only |
| Photo galleries | ✅ All photos | ⚠️ Thumbnail only |
| Parallel fetching | ✅ 10 pages at once | ❌ Sequential |
| Rent Zestimate | ✅ Included | ⚠️ Sometimes |
| Pet policy & amenities | ✅ When available | ❌ Not extracted |
| Free preview | ✅ 10 listings | ⚠️ Varies |

### 📋 How to Use

1. **Sign Up** - [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp) on Apify.
2. **Configure** - Paste a Zillow rental search URL and set your desired number of results.
3. **Run It** - Click Start and download your data in JSON, CSV, Excel, or any format you need.

That's it. No coding, no setup, no API keys to manage.

### 🎯 Business Use Cases

- 🏢 **Property managers** - Monitor competing rental prices across your market to optimize your own pricing strategy
- 📊 **Real estate investors** - Analyze rental yields by neighborhood to find the best investment opportunities
- 🏗️ **Developers** - Research rental demand and pricing before breaking ground on new construction
- 📈 **Market researchers** - Track rental trends over time to forecast market movements
- 🤖 **Data scientists** - Build rental price prediction models with comprehensive property data
- 🏠 **Relocators** - Compare rental markets across multiple cities to find the best value

***

***

### 🌟 Beyond business use cases

Data like this powers more than commercial workflows. The same structured records support research, education, civic projects, and personal initiatives.

<table>
<tr>
<td width="50%">

#### 🎓 Research and academia

- Empirical datasets for papers, thesis work, and coursework
- Longitudinal studies tracking changes across snapshots
- Reproducible research with cited, versioned data pulls
- Classroom exercises on data analysis and ethical scraping

</td>
<td width="50%">

#### 🎨 Personal and creative

- Side projects, portfolio demos, and indie app launches
- Data visualizations, dashboards, and infographics
- Content research for bloggers, YouTubers, and podcasters
- Hobbyist collections and personal trackers

</td>
</tr>
<tr>
<td width="50%">

#### 🤝 Non-profit and civic

- Transparency reporting and accountability projects
- Advocacy campaigns backed by public-interest data
- Community-run databases for local issues
- Investigative journalism on public records

</td>
<td width="50%">

#### 🧪 Experimentation

- Prototype AI and machine-learning pipelines with real data
- Validate product-market hypotheses before engineering spend
- Train small domain-specific models on niche corpora
- Test dashboard concepts with live input

</td>
</tr>
</table>

### 🤖 Ask an AI assistant about this scraper

Open a ready-to-send prompt about this ParseForge actor in the AI of your choice:

- 💬 [**ChatGPT**](https://chat.openai.com/?q=How%20do%20I%20use%20the%20Zillow%20Rentals%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🧠 [**Claude**](https://claude.ai/new?q=How%20do%20I%20use%20the%20Zillow%20Rentals%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🔍 [**Perplexity**](https://perplexity.ai/search?q=How%20do%20I%20use%20the%20Zillow%20Rentals%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🅒 [**Copilot**](https://copilot.microsoft.com/?q=How%20do%20I%20use%20the%20Zillow%20Rentals%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)

### ❓ Frequently Asked Questions

<details>
<summary><b>💳 Do I need a paid Apify plan to run this actor?</b></summary>

No. You can start right now on the free Apify plan, which includes **$5 in free monthly credit**. That is enough to run this actor several times and explore the output before committing to anything. Paid plans unlock higher limits, more concurrent runs, and larger datasets. [Create a free Apify account here](https://console.apify.com/sign-up?fpr=vmoqkp) to get started.

</details>

<details>
<summary><b>🚨 What happens if my run fails or returns no results?</b></summary>

Failed runs are not charged. If the source site changes, proxies get rate-limited, or a specific input matches nothing, re-run the actor or open our [contact form](https://tally.so/r/BzdKgA) and we will investigate. You can also check the run log in the Apify console to see why the run stopped.

</details>

<details>
<summary><b>📏 How many items can I scrape per run?</b></summary>

Free users are limited to **10 items per run** so you can preview the output and confirm the actor works for your use case. Paid users can raise `maxItems` up to **1,000,000** per run. [Upgrade here](https://console.apify.com/sign-up?fpr=vmoqkp) if you need full scale.

</details>

<details>
<summary><b>🕒 How fresh is the data?</b></summary>

Every run fetches live data at the moment of execution. There is no cache or delay: the records you get reflect what the source returned at that moment. Schedule the actor to maintain a rolling snapshot of the data you need.

</details>

<details>
<summary><b>🧑‍💻 Can I call this actor from my own code?</b></summary>

Yes. Apify exposes every actor as a REST endpoint and ships first-class SDKs for [Node.js](https://docs.apify.com/sdk/js) and [Python](https://docs.apify.com/sdk/python). You can start a run, read the dataset, and handle webhooks from your own app in a few lines. All you need is your Apify API token.

</details>

<details>
<summary><b>📤 How do I export the data?</b></summary>

Every Apify dataset can be downloaded in one click from the console as CSV, JSON, JSONL, Excel, HTML, XML, or RSS. You can also pull results programmatically via the [Apify API](https://docs.apify.com/api/v2) or stream them into BigQuery, S3, and other destinations through built-in integrations.

</details>

<details>
<summary><b>📅 Can I schedule the actor to run automatically?</b></summary>

Yes. Use the Apify scheduler to run the actor on any cadence, from hourly to monthly. Results are saved to your dataset and can be delivered to webhooks, email, Slack, cloud storage, or automation tools such as Zapier and Make.

</details>

***

### 🔗 Integrate Zillow Rentals Scraper with any app

- [Apify API documentation](https://docs.apify.com/api/v2) - access results programmatically
- [Apify integrations](https://docs.apify.com/integrations) - connect with Google Sheets, Slack, Zapier, Make, and more
- [Apify webhooks](https://docs.apify.com/integrations/webhooks) - get notified when a run finishes
- [Apify scheduling](https://docs.apify.com/schedules) - set up automatic recurring runs

### 💡 More ParseForge Actors

- [Zillow Scraper](https://apify.com/parseforge/zillow-scraper) - Extract for-sale property listings from Zillow
- [Greenhouse Jobs Scraper](https://apify.com/parseforge/greenhouse-jobs-scraper) - Collect job listings from Greenhouse-powered career pages
- [SimplyHired Scraper](https://apify.com/parseforge/simplyhired-scraper) - Extract job postings from SimplyHired

Browse our complete collection at [ParseForge on Apify Store](https://apify.com/parseforge).

### 🚀 Ready to Start?

[Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp) and start extracting Zillow rental data in minutes.

### 🆘 Need Help?

- 📖 Check the FAQ section above
- 📚 Visit the [Apify documentation](https://docs.apify.com)
- 💬 [Contact us](https://tally.so/r/parseforge-support) for support

### ⚠️ Disclaimer

> This Actor is an independent tool and is not affiliated with, endorsed by, or connected to Zillow Group, Inc. It is designed to extract publicly available data for personal and business use in compliance with applicable laws.

# Actor input Schema

## `listingUrl` (type: `string`):

A Zillow rental search URL. Go to zillow.com, search for rentals in your desired area, apply any filters you want, then copy the full URL from your browser.

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

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

## `proxyConfig` (type: `object`):

Proxy settings. Zillow requires residential proxies for reliable access.

## Actor input object example

```json
{
  "listingUrl": "https://www.zillow.com/los-angeles-ca/rentals/",
  "maxItems": 10,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# 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 = {
    "listingUrl": "https://www.zillow.com/los-angeles-ca/rentals/",
    "maxItems": 10,
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/zillow-rentals-scraper-ppe").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 = {
    "listingUrl": "https://www.zillow.com/los-angeles-ca/rentals/",
    "maxItems": 10,
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/zillow-rentals-scraper-ppe").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 '{
  "listingUrl": "https://www.zillow.com/los-angeles-ca/rentals/",
  "maxItems": 10,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call parseforge/zillow-rentals-scraper-ppe --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zillow Rentals Scraper",
        "description": "Extract rental listings from Zillow with prices, addresses, photos, bedrooms, bathrooms, and 38 property details. Search any US location for apartments, houses, and condos for rent.",
        "version": "1.0",
        "x-build-id": "58cQIwxxELjumGhHc"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~zillow-rentals-scraper-ppe/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-zillow-rentals-scraper-ppe",
                "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~zillow-rentals-scraper-ppe/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-zillow-rentals-scraper-ppe",
                "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~zillow-rentals-scraper-ppe/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-zillow-rentals-scraper-ppe",
                "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",
                "required": [
                    "listingUrl"
                ],
                "properties": {
                    "listingUrl": {
                        "title": "Zillow Rental Search URL",
                        "type": "string",
                        "description": "A Zillow rental search URL. Go to zillow.com, search for rentals in your desired area, apply any filters you want, then copy the full URL from your browser."
                    },
                    "maxItems": {
                        "title": "Maximum Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000",
                        "default": 100
                    },
                    "proxyConfig": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Zillow requires residential proxies for reliable access."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
