# Realtor.com Property Scraper (`one-api/realtor-property-scraper`) Actor

Scrape Realtor.com listings, full property details, agents, mortgages, and autocomplete suggestions. Search by location/ZIP/coordinates/polygon/URL with full filter set. Contact: oneapi.project@gmail.com

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

## Pricing

from $7.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

## Realtor.com Property Scraper

Scrape **Realtor.com** listings, full property details, agent info, mortgage estimates, and search-box autocomplete suggestions — all from one Actor. Backed by [realtyapi.io](https://realtyapi.io)'s real-time Realtor API.

⭐️ Found this useful? Please leave 5 stars! Issues / requests: 📬 **support@realtyapi.io**

---

### What you can do

| Section | What it does | Input format |
|---|---|---|
| 🏠 **Property Details** | Full details for a specific listing | `property_id` digits, Realtor.com listing URL, or full street address — auto-detected per row |
| 🔎 **Search Listings** | Paginated search with filters | location string, ZIP, `lat,lng,radius_mi`, polygon (`lon lat,lon lat,...`), or Realtor.com search URL |
| 🔍 **Autocomplete** | Search-box suggestions (cities, ZIPs, neighborhoods, schools, addresses) | partial query string |
| 👤 **Agent Lookup** | Agent name, office, profile URL | `fulfillment_id` (found in any details/search response under `advertisers[].fulfillment_id`) |
| 💰 **Mortgage Calculator** | Monthly payment + breakdown | `price` or `price,downPayment,rate,term` |

You can fill any combination of sections in a single run — leave the others empty.

---

### Output

Each listing / property / agent / mortgage / autocomplete suggestion is pushed as **one dataset row**, flattened to friendly columns plus a `Raw` column with the original JSON.

| Mode | Input Given | Property ID | Status | Price | Beds | Baths | Sqft | Street | City | State | Zip | Agent Name | Listing URL | Raw |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| `search/bylocation` | Austin, TX (p1) | 8873523070 | for_sale | 588888 | 3 | 2.5+ | 3066 | 13902 Panorama Dr | Austin | TX | 78732 | Elena Licari | https://www.realtor.com/... | `{...}` |
| `details/byid` | 8955838462 | 8955838462 | for_sale | 240000 | 3 | 2.5 | 1193 | 9504 Quail Village Ln | Austin | TX | 78758 | Carolina Aceituno | https://www.realtor.com/... | `{...}` |

Plus: `Listing ID`, `Lot Sqft`, `Year Built`, `Property Type`, `Latitude`, `Longitude`, `Days on Market`, `List Date`, `Photos` (cover URL), `Photo Count`, `Agent Fulfillment ID`, `Office Name`.

For nested/large fields (full photo arrays, schools, tax history, all phones, etc.) the complete upstream JSON is in the `Raw` column.

---

### Sample input

```json
{
    "property_inputs": [
        "8955838462",
        "https://www.realtor.com/realestateandhomes-detail/9504-Quail-Village-Ln_Austin_TX_78758_M89558-38462",
        "166 W 22nd St Unit 1D, New York, NY 10011"
    ],
    "search_inputs": ["Austin, TX", "78758", "30.4108,-97.7177,2"],
    "searchType": "For_Sale",
    "propertyType": "House,Condo",
    "priceRange": "min:300000,max:900000",
    "bedsRange": "min:2",
    "sortOrder": "Newest",
    "pages": 2,
    "resultCount": 50,

    "autocomplete_inputs": ["Brooklyn"],
    "agent_inputs": ["472555"],
    "mortgage_inputs": ["525000", "525000,105000,0.065,30"]
}
````

***

### Search filters (apply to all `search_inputs`)

- **searchType** — `For_Sale` | `For_Rent` | `Sold` (or comma-combined like `For_Sale,Sold`)
- **propertyType** — comma list of `House, Condo, Townhome, Multi_Family, Mobile, Farm, Land, Co-op`
- **priceRange / bedsRange / bathsRange / sqftRange** — `min:X` | `max:Y` | `min:X,max:Y` (baths support `2.5`)
- **sortOrder** — `Recommended`, `Newest`, `Oldest`, `Price_High_to_Low`, `Price_Low_to_High`, `Square_Feet`, `Lot_Size`, `Beds`, `Baths`, `Most_Recently_Sold`, `Open_House_Date`
- **pages** — how many pages to fetch (1–50). Each page = `resultCount` listings.
- **resultCount** — 1–200 per page, default 50
- **newConstruction / foreclosure** — `any` | `true` (only) | `false` (exclude)
- **openHouse** — `true` to keep only listings with an upcoming open house
- **keywords** — free-text, comma-separated (e.g. `pool,fireplace,granite countertops`)
- **daysOnMarketMax** — only listings within last N days

Filters apply to **every** `search_inputs` row in the run.

***

### Pricing

**Pay per result** — you only pay for dataset items the Actor pushes. Failed inputs return a row with `Status: ERROR: ...` and are billed the same as a successful row.

To cap spend, set `Max paid dataset items` on the run page.

***

### Tips

- **Need just one property?** Use the `property_inputs` section — auto-detects `property_id`, URL, or address.
- **Pull all listings in a city?** Use `search_inputs: ["City, ST"]` and crank `pages` (each page is up to 200 results).
- **Use a lat/lng circle?** Format: `30.4108,-97.7177,2` (last value is radius in miles).
- **Polygon?** `lon lat,lon lat,lon lat,...` — note longitude first (GeoJSON convention).
- **Resolve a Realtor.com URL?** Drop a search or detail URL straight into the matching section — both `byurl` modes parse the URL into the right call internally.

# Actor input Schema

## `property_inputs` (type: `array`):

Auto-detects each entry: digits → property\_id, http(s) URL → listing URL, anything else → address. Each row = 1 property detail call.

## `search_inputs` (type: `array`):

Auto-detects each entry. Examples:
• `Austin, TX` (location)
• `78758` (ZIP)
• `30.4108,-97.7177,2` (lat,lng,radius\_miles)
• `-97.74 30.40,-97.70 30.40,-97.70 30.43,-97.74 30.43` (polygon, lon-lat pairs)
• `https://www.realtor.com/realestateandhomes-search/Austin_TX/...` (search URL)

Filters below apply to every search. Each LISTING is pushed as one dataset item.

## `searchType` (type: `string`):

For\_Sale (default) | For\_Rent | Sold. Comma-separated for multi (e.g. `For_Sale,Sold`).

## `propertyType` (type: `string`):

Comma-separated. Leave empty for all. Allowed: House, Condo, Townhome, Multi\_Family, Mobile, Farm, Land, Co-op

## `priceRange` (type: `string`):

`min:500000`, `max:1500000`, or `min:500000,max:1500000`

## `bedsRange` (type: `string`):

`min:3`, `max:5`, `min:3,max:5` (studio = `min:0`)

## `bathsRange` (type: `string`):

Decimals supported: `min:2`, `max:3.5`, `min:2,max:3.5`

## `sqftRange` (type: `string`):

`min:1000`, `max:3000`, `min:1000,max:3000`

## `sortOrder` (type: `string`):

How to sort search results. Default: Recommended (Realtor.com's relevance bucket).

## `pages` (type: `integer`):

1-based. Each page = up to `Result Count` listings.

## `resultCount` (type: `integer`):

Min 1, Max 200. Default 50.

## `newConstruction` (type: `string`):

Filter new-construction listings.

## `foreclosure` (type: `string`):

Filter foreclosure listings.

## `openHouse` (type: `boolean`):

Only listings with an upcoming open house (For\_Sale).

## `keywords` (type: `string`):

Comma-separated amenities (e.g. `pool,fireplace,granite countertops`).

## `daysOnMarketMax` (type: `integer`):

Only listings within last N days. Empty = no limit.

## `autocomplete_inputs` (type: `array`):

Realtor.com search-box suggestions: cities, ZIPs, neighborhoods, addresses, schools, etc.

## `agent_inputs` (type: `array`):

Pulled from `listing_advertiser.fulfillment_id` in any details/search response.

## `mortgage_inputs` (type: `array`):

Required: price. Optional: downPayment ($), rate (decimal e.g. 0.065), term (years). Defaults: 20% down, 6.5%, 30yr.

## Actor input object example

```json
{
  "property_inputs": [
    "8955838462",
    "https://www.realtor.com/realestateandhomes-detail/9504-Quail-Village-Ln_Austin_TX_78758_M89558-38462",
    "166 W 22nd St Unit 1D, New York, NY 10011"
  ],
  "search_inputs": [
    "Austin, TX"
  ],
  "searchType": "For_Sale",
  "propertyType": "",
  "priceRange": "",
  "bedsRange": "",
  "bathsRange": "",
  "sqftRange": "",
  "sortOrder": "Recommended",
  "pages": 1,
  "resultCount": 50,
  "newConstruction": "any",
  "foreclosure": "any",
  "openHouse": false,
  "keywords": ""
}
```

# 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 = {
    "property_inputs": [
        "8955838462",
        "https://www.realtor.com/realestateandhomes-detail/9504-Quail-Village-Ln_Austin_TX_78758_M89558-38462",
        "166 W 22nd St Unit 1D, New York, NY 10011"
    ],
    "search_inputs": [
        "Austin, TX"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("one-api/realtor-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 = {
    "property_inputs": [
        "8955838462",
        "https://www.realtor.com/realestateandhomes-detail/9504-Quail-Village-Ln_Austin_TX_78758_M89558-38462",
        "166 W 22nd St Unit 1D, New York, NY 10011",
    ],
    "search_inputs": ["Austin, TX"],
}

# Run the Actor and wait for it to finish
run = client.actor("one-api/realtor-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 '{
  "property_inputs": [
    "8955838462",
    "https://www.realtor.com/realestateandhomes-detail/9504-Quail-Village-Ln_Austin_TX_78758_M89558-38462",
    "166 W 22nd St Unit 1D, New York, NY 10011"
  ],
  "search_inputs": [
    "Austin, TX"
  ]
}' |
apify call one-api/realtor-property-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Realtor.com Property Scraper",
        "description": "Scrape Realtor.com listings, full property details, agents, mortgages, and autocomplete suggestions. Search by location/ZIP/coordinates/polygon/URL with full filter set. Contact: oneapi.project@gmail.com",
        "version": "1.0",
        "x-build-id": "SIfRqTbWuc9pfmeBk"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/one-api~realtor-property-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-one-api-realtor-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/one-api~realtor-property-scraper/runs": {
            "post": {
                "operationId": "runs-sync-one-api-realtor-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/one-api~realtor-property-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-one-api-realtor-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": {
                    "property_inputs": {
                        "title": "Property ID, Realtor.com URL, or full Address (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry: digits → property_id, http(s) URL → listing URL, anything else → address. Each row = 1 property detail call.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "search_inputs": {
                        "title": "Location, ZIP, lat/lng radius, polygon, or Realtor.com search URL (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry. Examples:\n• `Austin, TX` (location)\n• `78758` (ZIP)\n• `30.4108,-97.7177,2` (lat,lng,radius_miles)\n• `-97.74 30.40,-97.70 30.40,-97.70 30.43,-97.74 30.43` (polygon, lon-lat pairs)\n• `https://www.realtor.com/realestateandhomes-search/Austin_TX/...` (search URL)\n\nFilters below apply to every search. Each LISTING is pushed as one dataset item.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchType": {
                        "title": "Search Type",
                        "enum": [
                            "For_Sale",
                            "For_Rent",
                            "Sold",
                            "For_Sale,Sold"
                        ],
                        "type": "string",
                        "description": "For_Sale (default) | For_Rent | Sold. Comma-separated for multi (e.g. `For_Sale,Sold`).",
                        "default": "For_Sale"
                    },
                    "propertyType": {
                        "title": "Property Types",
                        "type": "string",
                        "description": "Comma-separated. Leave empty for all. Allowed: House, Condo, Townhome, Multi_Family, Mobile, Farm, Land, Co-op",
                        "default": ""
                    },
                    "priceRange": {
                        "title": "Price Range",
                        "type": "string",
                        "description": "`min:500000`, `max:1500000`, or `min:500000,max:1500000`",
                        "default": ""
                    },
                    "bedsRange": {
                        "title": "Beds Range",
                        "type": "string",
                        "description": "`min:3`, `max:5`, `min:3,max:5` (studio = `min:0`)",
                        "default": ""
                    },
                    "bathsRange": {
                        "title": "Baths Range",
                        "type": "string",
                        "description": "Decimals supported: `min:2`, `max:3.5`, `min:2,max:3.5`",
                        "default": ""
                    },
                    "sqftRange": {
                        "title": "Sqft Range",
                        "type": "string",
                        "description": "`min:1000`, `max:3000`, `min:1000,max:3000`",
                        "default": ""
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "Recommended",
                            "Newest",
                            "Oldest",
                            "Price_High_to_Low",
                            "Price_Low_to_High",
                            "Square_Feet",
                            "Lot_Size",
                            "Beds",
                            "Baths",
                            "Most_Recently_Sold",
                            "Open_House_Date"
                        ],
                        "type": "string",
                        "description": "How to sort search results. Default: Recommended (Realtor.com's relevance bucket).",
                        "default": "Recommended"
                    },
                    "pages": {
                        "title": "Pages to fetch per search",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "1-based. Each page = up to `Result Count` listings.",
                        "default": 1
                    },
                    "resultCount": {
                        "title": "Results per page",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Min 1, Max 200. Default 50.",
                        "default": 50
                    },
                    "newConstruction": {
                        "title": "New Construction",
                        "enum": [
                            "any",
                            "true",
                            "false"
                        ],
                        "type": "string",
                        "description": "Filter new-construction listings.",
                        "default": "any"
                    },
                    "foreclosure": {
                        "title": "Foreclosure",
                        "enum": [
                            "any",
                            "true",
                            "false"
                        ],
                        "type": "string",
                        "description": "Filter foreclosure listings.",
                        "default": "any"
                    },
                    "openHouse": {
                        "title": "Open House Only",
                        "type": "boolean",
                        "description": "Only listings with an upcoming open house (For_Sale).",
                        "default": false
                    },
                    "keywords": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Comma-separated amenities (e.g. `pool,fireplace,granite countertops`).",
                        "default": ""
                    },
                    "daysOnMarketMax": {
                        "title": "Days on Market (max)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Only listings within last N days. Empty = no limit."
                    },
                    "autocomplete_inputs": {
                        "title": "Autocomplete query (one per line)",
                        "type": "array",
                        "description": "Realtor.com search-box suggestions: cities, ZIPs, neighborhoods, addresses, schools, etc.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "agent_inputs": {
                        "title": "Agent fulfillment_id (one per line)",
                        "type": "array",
                        "description": "Pulled from `listing_advertiser.fulfillment_id` in any details/search response.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "mortgage_inputs": {
                        "title": "Mortgage inputs: `price` or `price,downPayment,rate,term` (one per line)",
                        "type": "array",
                        "description": "Required: price. Optional: downPayment ($), rate (decimal e.g. 0.065), term (years). Defaults: 20% down, 6.5%, 30yr.",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
