# Commercialrealestateau - Business (`websift/commercialrealestateau-business`) Actor

Scrape CommercialRealEstate.com.au business-for-sale listings across Australia with this Apify actor. Filter by keyword, location, price, category, and sort mode to get fresh leads fast. Extract headlines, descriptions, prices, suburbs, coordinates, agency and agent details in structured data.

- **URL**: https://apify.com/websift/commercialrealestateau-business.md
- **Developed by:** [Jacob](https://apify.com/websift) (community)
- **Categories:** Automation, Real estate, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.70 / 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

## CommercialRealEstate.com.au Business Listings Scraper

### Features
- Scrapes business-for-sale listings from CommercialRealEstate.com.au.
- Supports keyword filtering with `searchTerm`.
- Supports configurable result limits with `maxResults`.
- Supports multiple sort options: `featured`, `newest first`, `cheapest first`, `expensive first`, `suburb a-z`, `suburb z-a`.
- Supports price filtering with `minPrice` and `maxPrice`.

### Input Parameters

- `searchTerm` *(string, optional)*: Free-text keyword search.
- `maxResults` *(integer, optional)*: Maximum number of listings to scrape.
- `sortOption` *(string, optional)*: One of the supported sort modes.
- `locations` *(array[string], optional)*: Location names to resolve (suburb, area, region, state).
- `minPrice` *(integer, optional)*: Minimum price filter.
- `maxPrice` *(integer, optional)*: Maximum price filter.

### Example Usage

Example input:

```json
{
  "searchTerm": "cafe",
  "maxResults": 100,
  "sortOption": "newest first",
  "minPrice": 50000,
  "maxPrice": 500000,
  "locations": ["nsw", "brisbane"]
}
````

### Output

Each dataset item includes:

- Listing core fields: `adID`, `headline`, `description`, `seoUrl`.
- Location and pricing fields: `displayableAddress`, `displayablePrice`, `suburb`, `state`, `postcode`.
- Business metadata: `mainCategory`, `dateUpdated`, `virtualTourUrl`, `isFranchise`.
- Coordinates: `mapLocation.latitude`, `mapLocation.longitude`.
- Agency object with nested agents and contact details.

Example Output:

```
[
  {
    "adID": 2020914737,
    "headline": "Renowned Wedding Venue & Residential Luxury Lifestyle Estate",
    "description": "The Wool Press Granya presents a unique opportunity to acquire an established wedding and events venue together with a premium lifestyle property in a picturesque Northeast Victoria location.\r\n\r\nOperating from a beautifully restored wool shed, the venue combines rustic charm with established infrastructure and a flexible operating model. Historically capped at approximately 15 weddings annually by owner choice and full-time positions in unrelated roles, the business offers significant opportunity for a new owner to increase wedding volumes and further develop complementary revenue streams.Business Highlights\r\n Turnkey, renowned destination wedding venue\r\n Venue-only hire option from $11.5k+ per booking\r\n Fully licensed venue accommodating up to 200 guests\r\n Lean operating model supported by four casual staff\r\n Forecast owner profit (PEBITDA) $180K+ based at 20 weddings-bookings p.a\r\n All plant & equipment, tangible assets and business IP included\r\n Venue-hire model with optional catering and event expansion\r\n\r\nResidential Rural Property\r\nComplementing the business is a premium lifestyle property. With space for children to explore, direct access to fishing and water activities, and quality lifestyle amenities already in place, the property offers the ideal balance of country living and business ownership, approximately 50km from the major regional hub of Albury-Wodonga.\r\n\r\nProperty Highlights\r\n Lake Hume frontage and access\r\n Approx. 22 acres (8.9 hectares), fenced paddocks and dams\r\n Modern four-bedroom residence plus study\r\n Heated swimming pool and tennis court\r\n Extensive shedding and rural infrastructure\r\n\r\nOffering the ability to live, work and invest from one exceptional property, suited to hospitality-focused couples, owner-operators, work-from-home professionals or families seeking a genuine regional lifestyle change.\r\n\r\nIf you've been dreaming of a regional lifestyle change, a better environment to raise a family, or the opportunity to work for yourself from one remarkable property, The Wool Press Granya deserves your consideration.\r\n\r\nPrice Summary\r\n Business: $50,000\r\n Property:$2,200,000 - $2,400,000\r\n\r\nLINK Business - Albury-Wodonga, Northeast Victoria & Riverina Murray\r\nBusiness Broker: Dallas Lodge - Director | Business Sales SpecialistRef: AW00050Mobile: ** **** ****\r\n Ref: AW00050\r\n Timestamp: 20260614093002",
    "url": "https://www.commercialrealestate.com.au/business-for-sale/renowned-wedding-venue-residential-luxury-lifestyle-estate-2020914737",
    "displayableAddress": "Northern Victoria VIC",
    "displayablePrice": "$2,500,000 (GST na)",
    "suburb": null,
    "state": "VIC",
    "postcode": null,
    "mainCategory": "Accommodation & Tourism",
    "dateUpdated": "2026-06-14T20:04:12.257",
    "virtualTourUrl": null,
    "isFranchise": false,
    "mapLocation": {
      "latitude": 0,
      "longitude": 0
    },
    "agency": {
      "agencyID": 39021,
      "agencyName": "LINK BUSINESS ALBURY-WODONGA, MURRAY-RIVERINA, NORTH EAST VICTORIA",
      "generalPhoneNumber": "02 6038 2118",
      "seoUrl": "/real-estate-agents/link-business-albury-wodonga-murray-riverina-north-east-victoria-39021",
      "fullAddress": "12/11 Volt Lane Albury NSW 2640"
    },
    "agents": [
      {
        "fullName": "Dallas Lodge",
        "telephone": "+61 260 382 118",
        "mobile": "+61 412 298 651",
        "agentProfileSeoUrl": "https://www.commercialrealestate.com.au/agent-profile/dallas-lodge-1988225/",
        "contactId": 1988225
      }
    ]
  }
]
```

### Error Handling

- Request retries are used for network calls.
- Individual request failures are logged; failed listing detail requests return `None`.
- If `maxPrice` is lower than `minPrice`, an error message is printed and price range is not applied.

### Support

For issues, feature requests, or questions about this actor, please create an issue in the repository.

# Actor input Schema

## `searchTerm` (type: `string`):

Keywords to filter listings.

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

Maximum number of listings to return.

## `sortOption` (type: `string`):

Sorting method for listings.

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

Minimum listing price.

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

Maximum listing price.

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

Locations to filter by (for example suburb, area, region, or state).

## `accommodation-tourism` (type: `boolean`):

Include all accommodation tourism categories.

## `caravan-park` (type: `boolean`):

Include caravan park category.

## `guest-house-bb` (type: `boolean`):

Include guest house bb category.

## `hotel` (type: `boolean`):

Include hotel category.

## `management-rights` (type: `boolean`):

Include management rights category.

## `motel` (type: `boolean`):

Include motel category.

## `resort` (type: `boolean`):

Include resort category.

## `tours` (type: `boolean`):

Include tours category.

## `automotive` (type: `boolean`):

Include all automotive categories.

## `accessories-parts` (type: `boolean`):

Include accessories parts category.

## `auto-electrical` (type: `boolean`):

Include auto electrical category.

## `mechanical-repair` (type: `boolean`):

Include mechanical repair category.

## `panel-beating` (type: `boolean`):

Include panel beating category.

## `service-station` (type: `boolean`):

Include service station category.

## `truck` (type: `boolean`):

Include truck category.

## `beauty-health` (type: `boolean`):

Include all beauty health categories.

## `beauty-products` (type: `boolean`):

Include beauty products category.

## `beauty-salon` (type: `boolean`):

Include beauty salon category.

## `hairdresser` (type: `boolean`):

Include hairdresser category.

## `health-beauty` (type: `boolean`):

Include health beauty category.

## `medical` (type: `boolean`):

Include medical category.

## `recreation-sport` (type: `boolean`):

Include recreation sport category.

## `sports-complex-gym` (type: `boolean`):

Include sports complex gym category.

## `building-construction` (type: `boolean`):

Include all building construction categories.

## `education-training` (type: `boolean`):

Include all education training categories.

## `educational` (type: `boolean`):

Include educational category.

## `hire` (type: `boolean`):

Include hire category.

## `food-beverage-hospitality` (type: `boolean`):

Include food beverage hospitality category.

## `bakery` (type: `boolean`):

Include bakery category.

## `bars-nightclubs` (type: `boolean`):

Include bars nightclubs category.

## `butcher` (type: `boolean`):

Include butcher category.

## `cafe-coffee-shop` (type: `boolean`):

Include cafe coffee shop category.

## `catering` (type: `boolean`):

Include catering category.

## `food-beverage` (type: `boolean`):

Include food beverage category.

## `fruit-veg-fresh-produce` (type: `boolean`):

Include fruit veg fresh produce category.

## `restaurant` (type: `boolean`):

Include restaurant category.

## `takeaway-food` (type: `boolean`):

Include takeaway food category.

## `franchise-business-opportunities` (type: `boolean`):

Include all franchise business opportunities categories.

## `alcohol-grocery` (type: `boolean`):

Include all alcohol grocery categories.

## `alcohol-liquor` (type: `boolean`):

Include alcohol liquor category.

## `convenience-store` (type: `boolean`):

Include convenience store category.

## `supermarket` (type: `boolean`):

Include supermarket category.

## `vending` (type: `boolean`):

Include vending category.

## `home-garden` (type: `boolean`):

Include all home garden categories.

## `garden-household` (type: `boolean`):

Include garden household category.

## `home-based` (type: `boolean`):

Include home based category.

## `pool-water` (type: `boolean`):

Include pool water category.

## `import-export-wholesale` (type: `boolean`):

Include all import export wholesale categories.

## `industrial-manufacturing` (type: `boolean`):

Include all industrial manufacturing categories.

## `oil-gas` (type: `boolean`):

Include oil gas category.

## `leisure-entertainment` (type: `boolean`):

Include all leisure entertainment categories.

## `services` (type: `boolean`):

Include all services categories.

## `brokerage` (type: `boolean`):

Include brokerage category.

## `cleaning` (type: `boolean`):

Include cleaning category.

## `finance` (type: `boolean`):

Include finance category.

## `mobile-services` (type: `boolean`):

Include mobile services category.

## `mustering` (type: `boolean`):

Include mustering category.

## `photo-printing` (type: `boolean`):

Include photo printing category.

## `property-real-estate` (type: `boolean`):

Include property real estate category.

## `repair` (type: `boolean`):

Include repair category.

## `scientific` (type: `boolean`):

Include scientific category.

## `security` (type: `boolean`):

Include security category.

## `rural` (type: `boolean`):

Include all rural categories.

## `sheering` (type: `boolean`):

Include sheering category.

## `retail` (type: `boolean`):

Include all retail categories.

## `clothing-accessories` (type: `boolean`):

Include clothing accessories category.

## `entertainment-technology` (type: `boolean`):

Include entertainment technology category.

## `homeware-hardware` (type: `boolean`):

Include homeware hardware category.

## `newsagency` (type: `boolean`):

Include newsagency category.

## `office-supplies` (type: `boolean`):

Include office supplies category.

## `post-offices` (type: `boolean`):

Include post offices category.

## `retailer` (type: `boolean`):

Include retailer category.

## `transport-distribution` (type: `boolean`):

Include all transport distribution categories.

## `courier` (type: `boolean`):

Include courier category.

## `storage` (type: `boolean`):

Include storage category.

## `manufacturing-engineering` (type: `boolean`):

Include undocumented category.

## `wholesale` (type: `boolean`):

Include undocumented category.

## `professional` (type: `boolean`):

Include undocumented category.

## `cleaning-maintenance` (type: `boolean`):

Include undocumented category.

## `juice-bar` (type: `boolean`):

Include undocumented category.

## `manufacturers` (type: `boolean`):

Include undocumented category.

## `wholesalers` (type: `boolean`):

Include undocumented category.

## `car-bus-truck` (type: `boolean`):

Include undocumented category.

## `furniture-timber` (type: `boolean`):

Include undocumented category.

## `massage` (type: `boolean`):

Include undocumented category.

## `training` (type: `boolean`):

Include undocumented category.

## `amusements` (type: `boolean`):

Include undocumented category.

## `machinery-metal` (type: `boolean`):

Include undocumented category.

## `florist-nursery` (type: `boolean`):

Include undocumented category.

## `gardening` (type: `boolean`):

Include undocumented category.

## `child-care` (type: `boolean`):

Include undocumented category.

## `health-spa` (type: `boolean`):

Include undocumented category.

## `animal-related` (type: `boolean`):

Include undocumented category.

## `entertainment` (type: `boolean`):

Include undocumented category.

## `advertising-marketing` (type: `boolean`):

Include undocumented category.

## `machinery` (type: `boolean`):

Include undocumented category.

## `electrical` (type: `boolean`):

Include undocumented category.

## `natural-therapies` (type: `boolean`):

Include undocumented category.

## `deli` (type: `boolean`):

Include undocumented category.

## `distributors` (type: `boolean`):

Include undocumented category.

## `function-centre` (type: `boolean`):

Include undocumented category.

## `road` (type: `boolean`):

Include undocumented category.

## `communication` (type: `boolean`):

Include undocumented category.

## `medical-practice` (type: `boolean`):

Include undocumented category.

## `gambling` (type: `boolean`):

Include undocumented category.

## `mining-earth-moving` (type: `boolean`):

Include undocumented category.

## `aquatic-marine-marina-berth` (type: `boolean`):

Include undocumented category.

## `adult` (type: `boolean`):

Include undocumented category.

## `detailing` (type: `boolean`):

Include undocumented category.

## `glass-ceramic` (type: `boolean`):

Include undocumented category.

## `nails` (type: `boolean`):

Include undocumented category.

## `agricultural` (type: `boolean`):

Include undocumented category.

## `car-wash` (type: `boolean`):

Include undocumented category.

## `communications` (type: `boolean`):

Include undocumented category.

## `import` (type: `boolean`):

Include undocumented category.

## `bike-motorcycle` (type: `boolean`):

Include undocumented category.

## `clothing-footwear` (type: `boolean`):

Include undocumented category.

## `marine` (type: `boolean`):

Include undocumented category.

## `pest-related` (type: `boolean`):

Include undocumented category.

## `arts-crafts` (type: `boolean`):

Include undocumented category.

## `paper-printing` (type: `boolean`):

Include undocumented category.

## `freight` (type: `boolean`):

Include undocumented category.

## `boats-marine-marina-berth` (type: `boolean`):

Include undocumented category.

## `civil` (type: `boolean`):

Include undocumented category.

## `music-related` (type: `boolean`):

Include undocumented category.

## `nursery` (type: `boolean`):

Include undocumented category.

## `water` (type: `boolean`):

Include undocumented category.

## `computer-it` (type: `boolean`):

Include undocumented category.

## `farming` (type: `boolean`):

Include undocumented category.

## `media` (type: `boolean`):

Include undocumented category.

## `car` (type: `boolean`):

Include undocumented category.

## `welding` (type: `boolean`):

Include undocumented category.

## `car-rental` (type: `boolean`):

Include undocumented category.

## `internet` (type: `boolean`):

Include undocumented category.

## `accounting` (type: `boolean`):

Include undocumented category.

## `computer-internet` (type: `boolean`):

Include undocumented category.

## `recruitment` (type: `boolean`):

Include undocumented category.

## `backpacker-hostel` (type: `boolean`):

Include undocumented category.

## `employment-recruitment` (type: `boolean`):

Include undocumented category.

## `plastic` (type: `boolean`):

Include undocumented category.

## `bus` (type: `boolean`):

Include undocumented category.

## `copy-laminate` (type: `boolean`):

Include undocumented category.

## `irrigation-services` (type: `boolean`):

Include undocumented category.

## `car-dealership` (type: `boolean`):

Include undocumented category.

## `garden-nurseries` (type: `boolean`):

Include undocumented category.

## `livestock` (type: `boolean`):

Include undocumented category.

## `dental` (type: `boolean`):

Include undocumented category.

## `export` (type: `boolean`):

Include undocumented category.

## `travel` (type: `boolean`):

Include undocumented category.

## `bookkeeping` (type: `boolean`):

Include undocumented category.

## `aged-care` (type: `boolean`):

Include undocumented category.

## `legal` (type: `boolean`):

Include undocumented category.

## `limousine-taxi` (type: `boolean`):

Include undocumented category.

## `nursing-home` (type: `boolean`):

Include undocumented category.

## `alarms` (type: `boolean`):

Include undocumented category.

## `taxi` (type: `boolean`):

Include undocumented category.

## `crop-harvesting` (type: `boolean`):

Include undocumented category.

## `driving-schools` (type: `boolean`):

Include undocumented category.

## `retirement-village` (type: `boolean`):

Include undocumented category.

## `boarding-kennels` (type: `boolean`):

Include undocumented category.

## `pharmacies` (type: `boolean`):

Include undocumented category.

## `wreckers` (type: `boolean`):

Include undocumented category.

## `air` (type: `boolean`):

Include undocumented category.

## `aquaculture` (type: `boolean`):

Include undocumented category.

## `dairy-farming` (type: `boolean`):

Include undocumented category.

## `hospital` (type: `boolean`):

Include undocumented category.

## `insurance` (type: `boolean`):

Include undocumented category.

## `land-clearing` (type: `boolean`):

Include undocumented category.

## `sea` (type: `boolean`):

Include undocumented category.

## `aircraft` (type: `boolean`):

Include undocumented category.

## `customs` (type: `boolean`):

Include undocumented category.

## `financial-services` (type: `boolean`):

Include undocumented category.

## `grocery` (type: `boolean`):

Include undocumented category.

## `variety-store` (type: `boolean`):

Include undocumented category.

## `construction` (type: `boolean`):

Include undocumented category.

## `fertiliser` (type: `boolean`):

Include undocumented category.

## `fishing-forestry` (type: `boolean`):

Include undocumented category.

## `fruit-picking` (type: `boolean`):

Include undocumented category.

## `hunting-trap` (type: `boolean`):

Include undocumented category.

## `parking-car-space` (type: `boolean`):

Include undocumented category.

## `theme-park` (type: `boolean`):

Include undocumented category.

## `wool-classing` (type: `boolean`):

Include undocumented category.

## Actor input object example

```json
{
  "searchTerm": "",
  "maxResults": 300,
  "sortOption": "Featured"
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("websift/commercialrealestateau-business").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("websift/commercialrealestateau-business").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 '{}' |
apify call websift/commercialrealestateau-business --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Commercialrealestateau - Business",
        "description": "Scrape CommercialRealEstate.com.au business-for-sale listings across Australia with this Apify actor. Filter by keyword, location, price, category, and sort mode to get fresh leads fast. Extract headlines, descriptions, prices, suburbs, coordinates, agency and agent details in structured data.",
        "version": "0.0",
        "x-build-id": "f9y4SfwoBZRbzE0Ka"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/websift~commercialrealestateau-business/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-websift-commercialrealestateau-business",
                "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/websift~commercialrealestateau-business/runs": {
            "post": {
                "operationId": "runs-sync-websift-commercialrealestateau-business",
                "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/websift~commercialrealestateau-business/run-sync": {
            "post": {
                "operationId": "run-sync-websift-commercialrealestateau-business",
                "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": {
                    "searchTerm": {
                        "title": "🔎 Search Term",
                        "type": "string",
                        "description": "Keywords to filter listings.",
                        "default": ""
                    },
                    "maxResults": {
                        "title": "📄 Maximum Results",
                        "minimum": 10,
                        "type": "integer",
                        "description": "Maximum number of listings to return.",
                        "default": 300
                    },
                    "sortOption": {
                        "title": "↕️ Sort Option",
                        "enum": [
                            "Featured",
                            "Newest First",
                            "Cheapest First",
                            "Expensive First",
                            "Suburb A-Z",
                            "Suburb Z-A"
                        ],
                        "type": "string",
                        "description": "Sorting method for listings.",
                        "default": "Featured"
                    },
                    "minPrice": {
                        "title": "💵 Minimum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum listing price."
                    },
                    "maxPrice": {
                        "title": "💰 Maximum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum listing price."
                    },
                    "locations": {
                        "title": "📍 Locations",
                        "type": "array",
                        "description": "Locations to filter by (for example suburb, area, region, or state).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "accommodation-tourism": {
                        "title": "All Accommodation Tourism",
                        "type": "boolean",
                        "description": "Include all accommodation tourism categories."
                    },
                    "caravan-park": {
                        "title": "Caravan Park",
                        "type": "boolean",
                        "description": "Include caravan park category."
                    },
                    "guest-house-bb": {
                        "title": "Guest House Bb",
                        "type": "boolean",
                        "description": "Include guest house bb category."
                    },
                    "hotel": {
                        "title": "Hotel",
                        "type": "boolean",
                        "description": "Include hotel category."
                    },
                    "management-rights": {
                        "title": "Management Rights",
                        "type": "boolean",
                        "description": "Include management rights category."
                    },
                    "motel": {
                        "title": "Motel",
                        "type": "boolean",
                        "description": "Include motel category."
                    },
                    "resort": {
                        "title": "Resort",
                        "type": "boolean",
                        "description": "Include resort category."
                    },
                    "tours": {
                        "title": "Tours",
                        "type": "boolean",
                        "description": "Include tours category."
                    },
                    "automotive": {
                        "title": "All Automotive",
                        "type": "boolean",
                        "description": "Include all automotive categories."
                    },
                    "accessories-parts": {
                        "title": "Accessories Parts",
                        "type": "boolean",
                        "description": "Include accessories parts category."
                    },
                    "auto-electrical": {
                        "title": "Auto Electrical",
                        "type": "boolean",
                        "description": "Include auto electrical category."
                    },
                    "mechanical-repair": {
                        "title": "Mechanical Repair",
                        "type": "boolean",
                        "description": "Include mechanical repair category."
                    },
                    "panel-beating": {
                        "title": "Panel Beating",
                        "type": "boolean",
                        "description": "Include panel beating category."
                    },
                    "service-station": {
                        "title": "Service Station",
                        "type": "boolean",
                        "description": "Include service station category."
                    },
                    "truck": {
                        "title": "Truck",
                        "type": "boolean",
                        "description": "Include truck category."
                    },
                    "beauty-health": {
                        "title": "All Beauty Health",
                        "type": "boolean",
                        "description": "Include all beauty health categories."
                    },
                    "beauty-products": {
                        "title": "Beauty Products",
                        "type": "boolean",
                        "description": "Include beauty products category."
                    },
                    "beauty-salon": {
                        "title": "Beauty Salon",
                        "type": "boolean",
                        "description": "Include beauty salon category."
                    },
                    "hairdresser": {
                        "title": "Hairdresser",
                        "type": "boolean",
                        "description": "Include hairdresser category."
                    },
                    "health-beauty": {
                        "title": "Health Beauty",
                        "type": "boolean",
                        "description": "Include health beauty category."
                    },
                    "medical": {
                        "title": "Medical",
                        "type": "boolean",
                        "description": "Include medical category."
                    },
                    "recreation-sport": {
                        "title": "Recreation Sport",
                        "type": "boolean",
                        "description": "Include recreation sport category."
                    },
                    "sports-complex-gym": {
                        "title": "Sports Complex Gym",
                        "type": "boolean",
                        "description": "Include sports complex gym category."
                    },
                    "building-construction": {
                        "title": "All Building Construction",
                        "type": "boolean",
                        "description": "Include all building construction categories."
                    },
                    "education-training": {
                        "title": "All Education Training",
                        "type": "boolean",
                        "description": "Include all education training categories."
                    },
                    "educational": {
                        "title": "Educational",
                        "type": "boolean",
                        "description": "Include educational category."
                    },
                    "hire": {
                        "title": "Hire",
                        "type": "boolean",
                        "description": "Include hire category."
                    },
                    "food-beverage-hospitality": {
                        "title": "Food Beverage Hospitality",
                        "type": "boolean",
                        "description": "Include food beverage hospitality category."
                    },
                    "bakery": {
                        "title": "Bakery",
                        "type": "boolean",
                        "description": "Include bakery category."
                    },
                    "bars-nightclubs": {
                        "title": "Bars Nightclubs",
                        "type": "boolean",
                        "description": "Include bars nightclubs category."
                    },
                    "butcher": {
                        "title": "Butcher",
                        "type": "boolean",
                        "description": "Include butcher category."
                    },
                    "cafe-coffee-shop": {
                        "title": "Cafe Coffee Shop",
                        "type": "boolean",
                        "description": "Include cafe coffee shop category."
                    },
                    "catering": {
                        "title": "Catering",
                        "type": "boolean",
                        "description": "Include catering category."
                    },
                    "food-beverage": {
                        "title": "Food Beverage",
                        "type": "boolean",
                        "description": "Include food beverage category."
                    },
                    "fruit-veg-fresh-produce": {
                        "title": "Fruit Veg Fresh Produce",
                        "type": "boolean",
                        "description": "Include fruit veg fresh produce category."
                    },
                    "restaurant": {
                        "title": "Restaurant",
                        "type": "boolean",
                        "description": "Include restaurant category."
                    },
                    "takeaway-food": {
                        "title": "Takeaway Food",
                        "type": "boolean",
                        "description": "Include takeaway food category."
                    },
                    "franchise-business-opportunities": {
                        "title": "All Franchise Business Opportunities",
                        "type": "boolean",
                        "description": "Include all franchise business opportunities categories."
                    },
                    "alcohol-grocery": {
                        "title": "All Alcohol Grocery",
                        "type": "boolean",
                        "description": "Include all alcohol grocery categories."
                    },
                    "alcohol-liquor": {
                        "title": "Alcohol Liquor",
                        "type": "boolean",
                        "description": "Include alcohol liquor category."
                    },
                    "convenience-store": {
                        "title": "Convenience Store",
                        "type": "boolean",
                        "description": "Include convenience store category."
                    },
                    "supermarket": {
                        "title": "Supermarket",
                        "type": "boolean",
                        "description": "Include supermarket category."
                    },
                    "vending": {
                        "title": "Vending",
                        "type": "boolean",
                        "description": "Include vending category."
                    },
                    "home-garden": {
                        "title": "All Home Garden",
                        "type": "boolean",
                        "description": "Include all home garden categories."
                    },
                    "garden-household": {
                        "title": "Garden Household",
                        "type": "boolean",
                        "description": "Include garden household category."
                    },
                    "home-based": {
                        "title": "Home Based",
                        "type": "boolean",
                        "description": "Include home based category."
                    },
                    "pool-water": {
                        "title": "Pool Water",
                        "type": "boolean",
                        "description": "Include pool water category."
                    },
                    "import-export-wholesale": {
                        "title": "All Import Export Wholesale",
                        "type": "boolean",
                        "description": "Include all import export wholesale categories."
                    },
                    "industrial-manufacturing": {
                        "title": "All Industrial Manufacturing",
                        "type": "boolean",
                        "description": "Include all industrial manufacturing categories."
                    },
                    "oil-gas": {
                        "title": "Oil Gas",
                        "type": "boolean",
                        "description": "Include oil gas category."
                    },
                    "leisure-entertainment": {
                        "title": "All Leisure Entertainment",
                        "type": "boolean",
                        "description": "Include all leisure entertainment categories."
                    },
                    "services": {
                        "title": "All Services",
                        "type": "boolean",
                        "description": "Include all services categories."
                    },
                    "brokerage": {
                        "title": "Brokerage",
                        "type": "boolean",
                        "description": "Include brokerage category."
                    },
                    "cleaning": {
                        "title": "Cleaning",
                        "type": "boolean",
                        "description": "Include cleaning category."
                    },
                    "finance": {
                        "title": "Finance",
                        "type": "boolean",
                        "description": "Include finance category."
                    },
                    "mobile-services": {
                        "title": "Mobile Services",
                        "type": "boolean",
                        "description": "Include mobile services category."
                    },
                    "mustering": {
                        "title": "Mustering",
                        "type": "boolean",
                        "description": "Include mustering category."
                    },
                    "photo-printing": {
                        "title": "Photo Printing",
                        "type": "boolean",
                        "description": "Include photo printing category."
                    },
                    "property-real-estate": {
                        "title": "Property Real Estate",
                        "type": "boolean",
                        "description": "Include property real estate category."
                    },
                    "repair": {
                        "title": "Repair",
                        "type": "boolean",
                        "description": "Include repair category."
                    },
                    "scientific": {
                        "title": "Scientific",
                        "type": "boolean",
                        "description": "Include scientific category."
                    },
                    "security": {
                        "title": "Security",
                        "type": "boolean",
                        "description": "Include security category."
                    },
                    "rural": {
                        "title": "All Rural",
                        "type": "boolean",
                        "description": "Include all rural categories."
                    },
                    "sheering": {
                        "title": "Sheering",
                        "type": "boolean",
                        "description": "Include sheering category."
                    },
                    "retail": {
                        "title": "All Retail",
                        "type": "boolean",
                        "description": "Include all retail categories."
                    },
                    "clothing-accessories": {
                        "title": "Clothing Accessories",
                        "type": "boolean",
                        "description": "Include clothing accessories category."
                    },
                    "entertainment-technology": {
                        "title": "Entertainment Technology",
                        "type": "boolean",
                        "description": "Include entertainment technology category."
                    },
                    "homeware-hardware": {
                        "title": "Homeware Hardware",
                        "type": "boolean",
                        "description": "Include homeware hardware category."
                    },
                    "newsagency": {
                        "title": "Newsagency",
                        "type": "boolean",
                        "description": "Include newsagency category."
                    },
                    "office-supplies": {
                        "title": "Office Supplies",
                        "type": "boolean",
                        "description": "Include office supplies category."
                    },
                    "post-offices": {
                        "title": "Post Offices",
                        "type": "boolean",
                        "description": "Include post offices category."
                    },
                    "retailer": {
                        "title": "Retailer",
                        "type": "boolean",
                        "description": "Include retailer category."
                    },
                    "transport-distribution": {
                        "title": "All Transport Distribution",
                        "type": "boolean",
                        "description": "Include all transport distribution categories."
                    },
                    "courier": {
                        "title": "Courier",
                        "type": "boolean",
                        "description": "Include courier category."
                    },
                    "storage": {
                        "title": "Storage",
                        "type": "boolean",
                        "description": "Include storage category."
                    },
                    "manufacturing-engineering": {
                        "title": "Manufacturing Engineering",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "wholesale": {
                        "title": "Wholesale",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "professional": {
                        "title": "Professional",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "cleaning-maintenance": {
                        "title": "Cleaning Maintenance",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "juice-bar": {
                        "title": "Juice Bar",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "manufacturers": {
                        "title": "Manufacturers",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "wholesalers": {
                        "title": "Wholesalers",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "car-bus-truck": {
                        "title": "Car Bus Truck",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "furniture-timber": {
                        "title": "Furniture Timber",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "massage": {
                        "title": "Massage",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "training": {
                        "title": "Training",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "amusements": {
                        "title": "Amusements",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "machinery-metal": {
                        "title": "Machinery Metal",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "florist-nursery": {
                        "title": "Florist Nursery",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "gardening": {
                        "title": "Gardening",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "child-care": {
                        "title": "Child Care",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "health-spa": {
                        "title": "Health Spa",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "animal-related": {
                        "title": "Animal Related",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "entertainment": {
                        "title": "Entertainment",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "advertising-marketing": {
                        "title": "Advertising Marketing",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "machinery": {
                        "title": "Machinery",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "electrical": {
                        "title": "Electrical",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "natural-therapies": {
                        "title": "Natural Therapies",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "deli": {
                        "title": "Deli",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "distributors": {
                        "title": "Distributors",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "function-centre": {
                        "title": "Function Centre",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "road": {
                        "title": "Road",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "communication": {
                        "title": "Communication",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "medical-practice": {
                        "title": "Medical Practice",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "gambling": {
                        "title": "Gambling",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "mining-earth-moving": {
                        "title": "Mining Earth Moving",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "aquatic-marine-marina-berth": {
                        "title": "Aquatic Marine Marina Berth",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "adult": {
                        "title": "Adult",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "detailing": {
                        "title": "Detailing",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "glass-ceramic": {
                        "title": "Glass Ceramic",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "nails": {
                        "title": "Nails",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "agricultural": {
                        "title": "Agricultural",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "car-wash": {
                        "title": "Car Wash",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "communications": {
                        "title": "Communications",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "import": {
                        "title": "Import",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "bike-motorcycle": {
                        "title": "Bike Motorcycle",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "clothing-footwear": {
                        "title": "Clothing Footwear",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "marine": {
                        "title": "Marine",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "pest-related": {
                        "title": "Pest Related",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "arts-crafts": {
                        "title": "Arts Crafts",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "paper-printing": {
                        "title": "Paper Printing",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "freight": {
                        "title": "Freight",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "boats-marine-marina-berth": {
                        "title": "Boats Marine Marina Berth",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "civil": {
                        "title": "Civil",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "music-related": {
                        "title": "Music Related",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "nursery": {
                        "title": "Nursery",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "water": {
                        "title": "Water",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "computer-it": {
                        "title": "Computer It",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "farming": {
                        "title": "Farming",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "media": {
                        "title": "Media",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "car": {
                        "title": "Car",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "welding": {
                        "title": "Welding",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "car-rental": {
                        "title": "Car Rental",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "internet": {
                        "title": "Internet",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "accounting": {
                        "title": "Accounting",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "computer-internet": {
                        "title": "Computer Internet",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "recruitment": {
                        "title": "Recruitment",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "backpacker-hostel": {
                        "title": "Backpacker Hostel",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "employment-recruitment": {
                        "title": "Employment Recruitment",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "plastic": {
                        "title": "Plastic",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "bus": {
                        "title": "Bus",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "copy-laminate": {
                        "title": "Copy Laminate",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "irrigation-services": {
                        "title": "Irrigation Services",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "car-dealership": {
                        "title": "Car Dealership",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "garden-nurseries": {
                        "title": "Garden Nurseries",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "livestock": {
                        "title": "Livestock",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "dental": {
                        "title": "Dental",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "export": {
                        "title": "Export",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "travel": {
                        "title": "Travel",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "bookkeeping": {
                        "title": "Bookkeeping",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "aged-care": {
                        "title": "Aged Care",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "legal": {
                        "title": "Legal",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "limousine-taxi": {
                        "title": "Limousine Taxi",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "nursing-home": {
                        "title": "Nursing Home",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "alarms": {
                        "title": "Alarms",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "taxi": {
                        "title": "Taxi",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "crop-harvesting": {
                        "title": "Crop Harvesting",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "driving-schools": {
                        "title": "Driving Schools",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "retirement-village": {
                        "title": "Retirement Village",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "boarding-kennels": {
                        "title": "Boarding Kennels",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "pharmacies": {
                        "title": "Pharmacies",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "wreckers": {
                        "title": "Wreckers",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "air": {
                        "title": "Air",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "aquaculture": {
                        "title": "Aquaculture",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "dairy-farming": {
                        "title": "Dairy Farming",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "hospital": {
                        "title": "Hospital",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "insurance": {
                        "title": "Insurance",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "land-clearing": {
                        "title": "Land Clearing",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "sea": {
                        "title": "Sea",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "aircraft": {
                        "title": "Aircraft",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "customs": {
                        "title": "Customs",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "financial-services": {
                        "title": "Financial Services",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "grocery": {
                        "title": "Grocery",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "variety-store": {
                        "title": "Variety Store",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "construction": {
                        "title": "Construction",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "fertiliser": {
                        "title": "Fertiliser",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "fishing-forestry": {
                        "title": "Fishing Forestry",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "fruit-picking": {
                        "title": "Fruit Picking",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "hunting-trap": {
                        "title": "Hunting Trap",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "parking-car-space": {
                        "title": "Parking Car Space",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "theme-park": {
                        "title": "Theme Park",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    },
                    "wool-classing": {
                        "title": "Wool Classing",
                        "type": "boolean",
                        "description": "Include undocumented category."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
