# Realestate.com.au Scraper (`one-api/realestate-com-au-scraper`) Actor

Scrape Realestate.com.au for-sale, rent, and sold listings + full property details. Search by suburb/postcode/coordinates/polygon/URL with filters (price, beds, baths, property type, sort, etc.).

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

## Pricing

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

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

## Realestate.com.au Scraper

Scrape **Realestate.com.au** for-sale, rent, and sold listings, plus full property details and search-box autocomplete suggestions — all from one Actor. Backed by [realtyapi.io](https://realtyapi.io)'s real-time Realestate.com.au API.

⭐️ Found this useful? Please leave 5 stars! Issues / requests: 📬 **oneapi.project@gmail.com**

---

### What you can do

| Section | What it does | Input format |
|---|---|---|
| 🏠 **Property Details** | Full details for a specific listing | listing ID digits, Realestate.com.au listing URL, or full street address — auto-detected per row |
| 🔎 **Search Listings** | Paginated search with filters | suburb / location string, AU postcode (4 digits), `lat,lng,radius_km`, polygon (`lon lat,lon lat,...`), or Realestate.com.au search URL |
| 🔍 **Autocomplete** | Search-box suggestions (suburbs, postcodes, regions, addresses, listings) | partial query string |

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

---

### Output

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

| Mode | Input Given | Listing ID | Channel | Price | Beds | Baths | Suburb | State | Postcode | Agent Name | Listing URL | Raw |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| `search/bylocation` | Bondi, NSW 2026 (p1) | 146041968 | buy | $2,150,000 | 3 | 2 | Bondi | NSW | 2026 | Jane Smith | https://www.realestate.com.au/... | `{...}` |
| `details/byid` | 146041968 | 146041968 | buy | $2,150,000 | 3 | 2 | Bondi | NSW | 2026 | Jane Smith | https://www.realestate.com.au/... | `{...}` |

Plus: `Title`, `Property Type`, `Street`, `Latitude`, `Longitude`, `Modified Date`, `Auction Time`, `Photos` (cover URL), `Photo Count`, `Agent Phone`, `Agency Name`.

For nested/large fields (full photo array, inspections, property features, agent reviews, etc.) the complete upstream JSON is in the `Raw` column.

---

### Sample input

```json
{
    "property_inputs": [
        "146041968",
        "https://www.realestate.com.au/property-house-nsw-bondi-146041968",
        "1 Macquarie St, Sydney NSW 2000"
    ],
    "search_inputs": ["Bondi, NSW 2026", "2026", "-33.8915,151.2767,2"],
    "searchType": "For_Sale",
    "propertyType": "House,Apartment",
    "priceRange": "min:500000,max:2000000",
    "bedsRange": "min:2",
    "sortOrder": "Newest",
    "pages": 2,
    "resultCount": 30,

    "autocomplete_inputs": ["bond"]
}
````

***

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

- **searchType** — `For_Sale` (default) | `For_Rent` | `Sold`
- **propertyType** — comma list of `House, Apartment, Unit, Townhouse, Villa, Land, Acreage, Rural, Block_of_Units, Retirement`
- **priceRange / bedsRange / landSizeRange** — `min:X` | `max:Y` | `min:X,max:Y`
- **bathsRange / carSpacesRange** — `min:X` only (server only honours minimum)
- **sortOrder** — `Recommended`, `Newest`, `Oldest`, `Price_Low_to_High`, `Price_High_to_Low`, `Most_Recently_Sold`, `Oldest_Sold`
- **pages** — how many pages to fetch (1–50). Each page = `resultCount` listings.
- **resultCount** — 1–200 per page, default 30
- **surroundingSuburbs** — default `true`. Untick to restrict to the named suburb only.
- **constructionStatus** — `any` | `established` | `new`
- **excludeUnderContract / excludeAuctions / excludePrivateSales / excludeNoDisplayPrice / excludeDepositTaken / newListingOnly / furnished / petsAllowed** — booleans
- **keywords** — free-text, comma-separated (e.g. `pool,garage,ocean view`)
- **maxSoldAge** — only meaningful on `Sold`. Format `value:unit` — e.g. `6:months`, `90:days`, `2:years`.

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 `property_inputs` — auto-detects listing ID, URL, or address.
- **Pull all listings in a suburb?** Use `search_inputs: ["Bondi, NSW 2026"]` and crank `pages` (each page is up to 200 results).
- **Use a lat/lng circle?** Format: `-33.8915,151.2767,2` (last value is radius in km).
- **Polygon?** `lon lat,lon lat,lon lat,...` — note longitude first (GeoJSON convention). Server converts to a bounding box.
- **Resolve a Realestate.com.au 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 → listingId, http(s) URL → listing URL, anything else → address. Each row = 1 property detail call.

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

Auto-detects each entry. Examples:
• `Bondi, NSW 2026` (suburb / location)
• `2026` (4-digit AU postcode)
• `-33.8915,151.2767,2` (lat,lng,radius\_km)
• `151.27 -33.89,151.29 -33.89,151.29 -33.87,151.27 -33.87` (polygon, lon-lat pairs — converted to bounding box)
• `https://www.realestate.com.au/buy/in-bondi+nsw+2026/list-1` (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.

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

Comma-separated. Leave empty for all. Allowed: House, Apartment, Unit, Townhouse, Villa, Land, Acreage, Rural, Block\_of\_Units, Retirement.

## `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`):

Server only honours minimum. Use `min:2`. (Max ignored.)

## `carSpacesRange` (type: `string`):

Server only honours minimum. Use `min:1`.

## `landSizeRange` (type: `string`):

`min:500`, `max:5000`, `min:500,max:5000`

## `surroundingSuburbs` (type: `boolean`):

Default: true. Untick to restrict results to the named suburb only.

## `constructionStatus` (type: `string`):

any | established | new

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

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

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

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

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

Min 1, Max 200. Default 30.

## `excludeUnderContract` (type: `boolean`):

Hide listings already marked under contract.

## `excludeAuctions` (type: `boolean`):

Hide auction listings.

## `excludePrivateSales` (type: `boolean`):

Hide private-sale listings.

## `excludeNoDisplayPrice` (type: `boolean`):

Hide listings that don't show a price.

## `excludeDepositTaken` (type: `boolean`):

Hide rentals that already have a deposit taken.

## `newListingOnly` (type: `boolean`):

Restrict to newly added listings.

## `furnished` (type: `boolean`):

Rent channel only — show furnished listings only.

## `petsAllowed` (type: `boolean`):

Rent channel only — show listings that allow pets.

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

Comma-separated amenities (e.g. `pool,garage,ocean view`).

## `maxSoldAge` (type: `string`):

Format `value:unit` — e.g. `6:months`, `90:days`, `2:years`. Only meaningful when Search Type = Sold.

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

Realestate.com.au search-box suggestions: suburbs, postcodes, regions, addresses, listings.

## Actor input object example

```json
{
  "property_inputs": [
    "146041968",
    "https://www.realestate.com.au/property-house-nsw-bondi-146041968",
    "1 Macquarie St, Sydney NSW 2000"
  ],
  "search_inputs": [
    "Bondi, NSW 2026"
  ],
  "searchType": "For_Sale",
  "propertyType": "",
  "priceRange": "",
  "bedsRange": "",
  "bathsRange": "",
  "carSpacesRange": "",
  "landSizeRange": "",
  "surroundingSuburbs": true,
  "constructionStatus": "any",
  "sortOrder": "Recommended",
  "pages": 1,
  "resultCount": 30,
  "excludeUnderContract": false,
  "excludeAuctions": false,
  "excludePrivateSales": false,
  "excludeNoDisplayPrice": false,
  "excludeDepositTaken": false,
  "newListingOnly": false,
  "furnished": false,
  "petsAllowed": false,
  "keywords": "",
  "maxSoldAge": ""
}
```

# 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": [
        "146041968",
        "https://www.realestate.com.au/property-house-nsw-bondi-146041968",
        "1 Macquarie St, Sydney NSW 2000"
    ],
    "search_inputs": [
        "Bondi, NSW 2026"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("one-api/realestate-com-au-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": [
        "146041968",
        "https://www.realestate.com.au/property-house-nsw-bondi-146041968",
        "1 Macquarie St, Sydney NSW 2000",
    ],
    "search_inputs": ["Bondi, NSW 2026"],
}

# Run the Actor and wait for it to finish
run = client.actor("one-api/realestate-com-au-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": [
    "146041968",
    "https://www.realestate.com.au/property-house-nsw-bondi-146041968",
    "1 Macquarie St, Sydney NSW 2000"
  ],
  "search_inputs": [
    "Bondi, NSW 2026"
  ]
}' |
apify call one-api/realestate-com-au-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Realestate.com.au Scraper",
        "description": "Scrape Realestate.com.au for-sale, rent, and sold listings + full property details. Search by suburb/postcode/coordinates/polygon/URL with filters (price, beds, baths, property type, sort, etc.).",
        "version": "1.0",
        "x-build-id": "LAueognXvXSwgeziA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/one-api~realestate-com-au-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-one-api-realestate-com-au-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~realestate-com-au-scraper/runs": {
            "post": {
                "operationId": "runs-sync-one-api-realestate-com-au-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~realestate-com-au-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-one-api-realestate-com-au-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": "Listing ID, Realestate.com.au URL, or full Address (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry: digits → listingId, http(s) URL → listing URL, anything else → address. Each row = 1 property detail call.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "search_inputs": {
                        "title": "Suburb, postcode, lat/lng radius, polygon, or Realestate.com.au search URL (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry. Examples:\n• `Bondi, NSW 2026` (suburb / location)\n• `2026` (4-digit AU postcode)\n• `-33.8915,151.2767,2` (lat,lng,radius_km)\n• `151.27 -33.89,151.29 -33.89,151.29 -33.87,151.27 -33.87` (polygon, lon-lat pairs — converted to bounding box)\n• `https://www.realestate.com.au/buy/in-bondi+nsw+2026/list-1` (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"
                        ],
                        "type": "string",
                        "description": "For_Sale (default) | For_Rent | Sold.",
                        "default": "For_Sale"
                    },
                    "propertyType": {
                        "title": "Property Types",
                        "type": "string",
                        "description": "Comma-separated. Leave empty for all. Allowed: House, Apartment, Unit, Townhouse, Villa, Land, Acreage, Rural, Block_of_Units, Retirement.",
                        "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 (min only)",
                        "type": "string",
                        "description": "Server only honours minimum. Use `min:2`. (Max ignored.)",
                        "default": ""
                    },
                    "carSpacesRange": {
                        "title": "Car Spaces (min only)",
                        "type": "string",
                        "description": "Server only honours minimum. Use `min:1`.",
                        "default": ""
                    },
                    "landSizeRange": {
                        "title": "Land Size (sqm)",
                        "type": "string",
                        "description": "`min:500`, `max:5000`, `min:500,max:5000`",
                        "default": ""
                    },
                    "surroundingSuburbs": {
                        "title": "Include Surrounding Suburbs",
                        "type": "boolean",
                        "description": "Default: true. Untick to restrict results to the named suburb only.",
                        "default": true
                    },
                    "constructionStatus": {
                        "title": "Construction Status",
                        "enum": [
                            "any",
                            "established",
                            "new"
                        ],
                        "type": "string",
                        "description": "any | established | new",
                        "default": "any"
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "Recommended",
                            "Newest",
                            "Oldest",
                            "Price_Low_to_High",
                            "Price_High_to_Low",
                            "Most_Recently_Sold",
                            "Oldest_Sold"
                        ],
                        "type": "string",
                        "description": "How to sort search results. Default: Recommended (Realestate.com.au'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 30.",
                        "default": 30
                    },
                    "excludeUnderContract": {
                        "title": "Exclude Under Contract",
                        "type": "boolean",
                        "description": "Hide listings already marked under contract.",
                        "default": false
                    },
                    "excludeAuctions": {
                        "title": "Exclude Auctions",
                        "type": "boolean",
                        "description": "Hide auction listings.",
                        "default": false
                    },
                    "excludePrivateSales": {
                        "title": "Exclude Private Sales",
                        "type": "boolean",
                        "description": "Hide private-sale listings.",
                        "default": false
                    },
                    "excludeNoDisplayPrice": {
                        "title": "Exclude listings without display price",
                        "type": "boolean",
                        "description": "Hide listings that don't show a price.",
                        "default": false
                    },
                    "excludeDepositTaken": {
                        "title": "Exclude Deposit Taken",
                        "type": "boolean",
                        "description": "Hide rentals that already have a deposit taken.",
                        "default": false
                    },
                    "newListingOnly": {
                        "title": "New Listings Only",
                        "type": "boolean",
                        "description": "Restrict to newly added listings.",
                        "default": false
                    },
                    "furnished": {
                        "title": "Furnished only (rent)",
                        "type": "boolean",
                        "description": "Rent channel only — show furnished listings only.",
                        "default": false
                    },
                    "petsAllowed": {
                        "title": "Pets Allowed only (rent)",
                        "type": "boolean",
                        "description": "Rent channel only — show listings that allow pets.",
                        "default": false
                    },
                    "keywords": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Comma-separated amenities (e.g. `pool,garage,ocean view`).",
                        "default": ""
                    },
                    "maxSoldAge": {
                        "title": "Max Sold Age (Sold channel only)",
                        "type": "string",
                        "description": "Format `value:unit` — e.g. `6:months`, `90:days`, `2:years`. Only meaningful when Search Type = Sold.",
                        "default": ""
                    },
                    "autocomplete_inputs": {
                        "title": "Autocomplete query (one per line)",
                        "type": "array",
                        "description": "Realestate.com.au search-box suggestions: suburbs, postcodes, regions, addresses, listings.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
