# Realtor.com Property Scraper — US Listings | from $1.40/1K (`bovi/realtor-scraper`) Actor

Scrape for-sale, for-rent, and recently-sold listings from Realtor.com into clean JSON — address, price, beds, baths, sqft, coordinates, status, and more. No proxy needed. Every result ships a parse\_confidence score.

- **URL**: https://apify.com/bovi/realtor-scraper.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (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 $1.36 / 1,000 property-items

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

For US real estate investors, wholesalers, and PropTech builders who need daily market data from Realtor.com's 4M+ active listings without proxy overhead.

**$1.40 per 1,000 properties** — no proxy cost, $0 infra COGS passed to you.

Scrape Realtor.com for-sale, for-rent, and sold property listings into clean JSON. Built on Realtor.com's internal GraphQL API — returns reliable structured data with coordinates, no proxy required.

### What you get

Every listing produces one flat JSON record:

| Field | Description |
|---|---|
| `property_id` | Realtor.com unique ID |
| `address` | Street address line |
| `city` | City name |
| `state` | 2-letter state code |
| `zip` | Postal code |
| `price` | List price in USD (null for some rentals) |
| `beds` | Bedroom count |
| `baths` | Bathroom count (consolidated, e.g. "3.5") |
| `sqft` | Interior square footage |
| `lot_sqft` | Lot size in sqft (null for condos/apts) |
| `property_type` | single_family, condos, townhomes, multi_family, mobile, land, farm |
| `status` | for_sale, for_rent, sold, ready_to_build |
| `list_date` | ISO-8601 UTC date when listed |
| `latitude` | GPS latitude |
| `longitude` | GPS longitude |
| `photo_url` | Primary listing photo URL |
| `url` | Full Realtor.com listing URL |
| `parse_confidence` | Data quality score 0–1 (1.0 = all fields present) |
| `warnings` | List of missing or degraded fields |

### Input

Provide Realtor.com search URLs, free-text locations, or both:

```json
{
    "searchUrls": [
        {"url": "https://www.realtor.com/realestateandhomes-search/Austin_TX"}
    ],
    "locations": ["90210", "Brooklyn, NY"],
    "maxResults": 200,
    "status": ["for_sale"],
    "propertyTypes": ["single_family", "condos"],
    "minPrice": 300000,
    "maxPrice": 800000,
    "minBeds": 3,
    "sortType": "newest"
}
````

### Filters

- **status**: `for_sale` | `for_rent` | `sold` | `ready_to_build`
- **propertyTypes**: `single_family` | `condos` | `townhomes` | `multi_family` | `mobile` | `land` | `farm`
- **sortType**: `relevant` | `price_high` | `price_low` | `newest` | `oldest`
- Price, bed, bath, sqft ranges (all optional)

### Output sample

```json
{
  "property_id": "8742581034",
  "address": "1234 Barton Creek Blvd",
  "city": "Austin",
  "state": "TX",
  "zip": "78735",
  "price": 875000,
  "beds": 4,
  "baths": "3",
  "sqft": 3200,
  "lot_sqft": 9200,
  "property_type": "single_family",
  "status": "for_sale",
  "list_date": "2026-05-18T00:00:00Z",
  "latitude": 30.2488,
  "longitude": -97.8681,
  "photo_url": "https://ap.rdcpix.com/abc123/xyz456-w1024_h768.jpg",
  "url": "https://www.realtor.com/realestateandhomes-detail/1234-Barton-Creek-Blvd_Austin_TX_78735_M87425-81034",
  "parse_confidence": 1.0,
  "warnings": []
}
```

### Pricing example

| Run size | Cost |
|---|---|
| 100 properties | ~$0.14 |
| 1,000 properties | ~$1.40 |
| 10,000 properties | ~$14.00 |
| + sold comp (status: sold) | +$1.40/1K |

### FAQ

**Do I need a Realtor.com account or proxy?**
No account, no proxy. Uses the internal GraphQL endpoint directly.

**What output formats are available?**
JSON, CSV, Excel, XML — all via Apify dataset download or API.

**Can I schedule recurring pulls?**
Yes — use Apify Schedules (cron) to monitor a neighborhood daily and webhook results into your CRM or spreadsheet.

**What if a location returns empty results?**
The actor logs the location, skips it, and continues to the next. Empty locations push no records and charge nothing.

### Why this actor vs. competitors

| Feature | This actor | epctex/realtor-scraper ($3/1K) | Typical Realtor.com scraper |
|---|---|---|---|
| GraphQL internal API (stable) | Yes | No (HTML) | Often HTML-scrape |
| parse\_confidence + warnings | Yes | No | No |
| Free-text location input | Yes | No | URL-only |
| For-rent + sold comps + for-sale | All 3 | For-sale only | Usually for-sale only |
| Sold comps premium event | Yes | No | No |
| Proxy required | No | Yes | Often yes |
| Price per 1K listings | $1.40 | $3.00 | varies |

### parse\_confidence

Every record includes `parse_confidence` (1.0 = all fields present). Records with `parse_confidence < 0.8` have degraded data — inspect the `warnings` array.

### Use cases (expanded)

- Wholesaler skip-tracing pipeline — pull all motivated-seller signals in a ZIP
- Rental arbitrage analysis — compare for-rent vs sold comps in the same neighborhood
- Investor comp pulling — `status: ["sold"]` returns the equivalent of what Zillow charges for

### Use with AI agents (MCP)

Tag: `MCP_SERVERS`. Returns flat JSON — plug directly into LangChain agents, n8n nodes, or Make scenarios without transformation.

```json
{
  "mcpServer": "https://mcp.apify.com/?tools=bovi/realtor-scraper"
}
```

### Pricing

Pay-Per-Event (PPE):

| Event | Price |
|---|---|
| `property-item` (primary) | **$1.40 / 1,000 properties** |
| `recently-sold` (premium) | **$1.40 / 1,000 sold comps** |

Sold listings (`status: ["sold"]`) charge both the base event and the `recently-sold` premium — sold comps are the high-value investor data Zillow charges for separately at $1.40/1K. Active and for-rent listings charge only the base event.

### Use cases

- Real estate market analysis and price trend research
- Lead generation for agents and investors
- Building property comparison tools
- Rental market intelligence
- Geospatial analysis (coordinates included for every listing)
- Monitoring price changes by neighborhood

### Technical notes

- Fetches from Realtor.com's internal GraphQL feed — the same data source powering their website
- No proxy required: $0 infra cost passed through to you
- Paginates automatically up to your `maxResults` cap
- `parse_confidence = 1.0` when all critical fields are present; lower values mean missing data (check `warnings` field)
- Free-text locations support: city names, ZIP codes, neighborhood names

### Integrations

Built for US real-estate investors, wholesalers, and PropTech builders monitoring active listings and price trends — the JSON/dataset output drops into the tools you already run, no glue code:

- **n8n / Make / Zapier** — trigger a run or pipe every new dataset item into 500+ apps (Google Sheets, Airtable, Slack, HubSpot, your database) with no code: [n8n](https://docs.apify.com/platform/integrations/n8n), [Make](https://docs.apify.com/platform/integrations/make), [Zapier](https://docs.apify.com/platform/integrations/zapier).
- **Webhooks** — fire your own endpoint the moment a run finishes, to push results straight into your pipeline ([docs](https://docs.apify.com/platform/integrations/webhooks)).
- **MCP server** — expose this actor as a tool to Claude, Cursor, or any [MCP client](https://mcp.apify.com) so an AI agent can pull this data mid-conversation ([guide](https://blog.apify.com/how-to-use-mcp/)).
- **API & SDKs** — fetch the dataset as JSON, CSV, or Excel through the Apify REST API or the Python / JS SDKs.

See all [Apify integrations](https://apify.com/integrations).

### Not affiliated with Realtor.com

This actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Realtor.com or Move Sales, Inc. Data is sourced from publicly accessible pages. Use in accordance with Realtor.com's Terms of Service.

# Actor input Schema

## `searchUrls` (type: `array`):

One or more Realtor.com search page URLs. The actor extracts the location automatically. Example: https://www.realtor.com/realestateandhomes-search/Austin\_TX

## `locations` (type: `array`):

Free-text location strings Realtor.com understands. Examples: "Austin, TX", "90210", "Brooklyn, NY". Use instead of or in addition to Search URLs above.

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

Maximum number of listings to scrape per location. Paginated automatically. Default: 100.

## `status` (type: `array`):

Filter by listing status: for\_sale, for\_rent, ready\_to\_build, or sold. Default: for\_sale only.

## `sortType` (type: `string`):

How to sort results. Choose relevant for Realtor.com default ranking.

## `propertyTypes` (type: `array`):

Filter by property type. Leave empty for all types. Values: single\_family, condos, townhomes, multi\_family, mobile, land, farm.

## `minPrice` (type: `integer`):

Minimum list price filter in USD. Leave blank for no minimum.

## `maxPrice` (type: `integer`):

Maximum list price filter in USD. Leave blank for no maximum.

## `minBeds` (type: `integer`):

Minimum number of bedrooms. Leave blank for no minimum.

## `maxBeds` (type: `integer`):

Maximum number of bedrooms. Leave blank for no maximum.

## `minBaths` (type: `integer`):

Minimum number of bathrooms (consolidated count). Leave blank for no minimum.

## `maxBaths` (type: `integer`):

Maximum number of bathrooms (consolidated count). Leave blank for no maximum.

## `minSqft` (type: `integer`):

Minimum interior square footage. Leave blank for no minimum.

## `maxSqft` (type: `integer`):

Maximum interior square footage. Leave blank for no maximum.

## Actor input object example

```json
{
  "searchUrls": [
    {
      "url": "https://www.realtor.com/realestateandhomes-search/Austin_TX"
    }
  ],
  "locations": [],
  "maxResults": 100,
  "status": [
    "for_sale"
  ],
  "sortType": "relevant",
  "propertyTypes": []
}
```

# Actor output Schema

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

Dataset containing Realtor Scraper records (property\_id, address, city, state, zip, property\_type, status, price, beds, baths, sqft, lot\_sqft, latitude, longitude, photo\_url, url, list\_date, parse\_confidence).

# 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 = {
    "searchUrls": [
        {
            "url": "https://www.realtor.com/realestateandhomes-search/Austin_TX"
        }
    ],
    "locations": [],
    "maxResults": 100,
    "status": [
        "for_sale"
    ],
    "propertyTypes": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/realtor-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 = {
    "searchUrls": [{ "url": "https://www.realtor.com/realestateandhomes-search/Austin_TX" }],
    "locations": [],
    "maxResults": 100,
    "status": ["for_sale"],
    "propertyTypes": [],
}

# Run the Actor and wait for it to finish
run = client.actor("bovi/realtor-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 '{
  "searchUrls": [
    {
      "url": "https://www.realtor.com/realestateandhomes-search/Austin_TX"
    }
  ],
  "locations": [],
  "maxResults": 100,
  "status": [
    "for_sale"
  ],
  "propertyTypes": []
}' |
apify call bovi/realtor-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Realtor.com Property Scraper — US Listings | from $1.40/1K",
        "description": "Scrape for-sale, for-rent, and recently-sold listings from Realtor.com into clean JSON — address, price, beds, baths, sqft, coordinates, status, and more. No proxy needed. Every result ships a parse_confidence score.",
        "version": "0.1",
        "x-build-id": "ojaHJhCma6ebgAtP6"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/bovi~realtor-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-bovi-realtor-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/bovi~realtor-scraper/runs": {
            "post": {
                "operationId": "runs-sync-bovi-realtor-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/bovi~realtor-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-bovi-realtor-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": {
                    "searchUrls": {
                        "title": "Realtor.com search URLs",
                        "type": "array",
                        "description": "One or more Realtor.com search page URLs. The actor extracts the location automatically. Example: https://www.realtor.com/realestateandhomes-search/Austin_TX",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "locations": {
                        "title": "Location strings",
                        "type": "array",
                        "description": "Free-text location strings Realtor.com understands. Examples: \"Austin, TX\", \"90210\", \"Brooklyn, NY\". Use instead of or in addition to Search URLs above.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max results per location",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of listings to scrape per location. Paginated automatically. Default: 100."
                    },
                    "status": {
                        "title": "Listing status",
                        "type": "array",
                        "description": "Filter by listing status: for_sale, for_rent, ready_to_build, or sold. Default: for_sale only.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sortType": {
                        "title": "Sort order",
                        "enum": [
                            "relevant",
                            "price_high",
                            "price_low",
                            "newest",
                            "oldest"
                        ],
                        "type": "string",
                        "description": "How to sort results. Choose relevant for Realtor.com default ranking.",
                        "default": "relevant"
                    },
                    "propertyTypes": {
                        "title": "Property types",
                        "type": "array",
                        "description": "Filter by property type. Leave empty for all types. Values: single_family, condos, townhomes, multi_family, mobile, land, farm.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "minPrice": {
                        "title": "Min price (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum list price filter in USD. Leave blank for no minimum."
                    },
                    "maxPrice": {
                        "title": "Max price (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum list price filter in USD. Leave blank for no maximum."
                    },
                    "minBeds": {
                        "title": "Min bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of bedrooms. Leave blank for no minimum."
                    },
                    "maxBeds": {
                        "title": "Max bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of bedrooms. Leave blank for no maximum."
                    },
                    "minBaths": {
                        "title": "Min bathrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of bathrooms (consolidated count). Leave blank for no minimum."
                    },
                    "maxBaths": {
                        "title": "Max bathrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of bathrooms (consolidated count). Leave blank for no maximum."
                    },
                    "minSqft": {
                        "title": "Min square footage",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum interior square footage. Leave blank for no minimum."
                    },
                    "maxSqft": {
                        "title": "Max square footage",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum interior square footage. Leave blank for no maximum."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
