# Travel & Hotel Intelligence (`moving_beacon-owner1/travel-hotel-intelligence`) Actor

A unified Apify actor that scrapes hotel and short-let pricing from Airbnb, Booking.com, Google Hotels, and Trivago, returning all records in a single normalized schema. This tool is designed for rate shopping, price-comparison dashboards, and revenue-management feeds.

- **URL**: https://apify.com/moving\_beacon-owner1/travel-hotel-intelligence.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Categories:** Travel, E-commerce, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

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

## Travel & Hotel Intelligence

A unified Apify actor that scrapes hotel and short-let pricing across **Airbnb, Booking.com, Google Hotels, and Trivago**, returning every record in a single normalised schema. Designed for rate-shopping, price-comparison dashboards, and revenue-management feeds.

### What it replaces

Five independent scrapers — one per platform — each with its own input shape, its own output columns, and its own retry quirks. This actor consolidates them behind:

- a **single normalised record** (`HotelRecord`) so downstream tools don't need per-platform branches,
- a **shared utility layer** for price parsing, date generation, deep-key lookups, retries, and stealth browser setup,
- a **router** that picks the right scraper from URL host or an explicit `platform` field.

### Quick start

#### Single job

```json
{
  "platform": "airbnb",
  "searchUrl": "https://www.airbnb.com/s/Cardiff--United-Kingdom/homes",
  "numberOfLinks": 25,
  "checkInDate": "2026-07-01",
  "numberOfDays": 14,
  "stayNights": 1,
  "currency": "GBP",
  "concurrency": 8
}
````

#### Multiple platforms in one run

```json
{
  "jobs": [
    {
      "platform": "google",
      "location": "Paris",
      "pages": 3,
      "hotelClass": "class_4"
    },
    {
      "platform": "trivago",
      "startUrl": "https://www.trivago.co.uk/en-GB/srl/hotels-cardiff-united-kingdom?search=200-21013;dr-20260410-20260411;drs-40;pa-2;rc-1-2",
      "days": 7
    },
    {
      "platform": "booking-calendar",
      "startUrls": [
        "https://www.booking.com/hotel/gb/marriott-cardiff.html"
      ],
      "targetMonth": "2026-12"
    },
    {
      "platform": "booking-search",
      "startUrls": [
        "https://www.booking.com/searchresults.html?ss=Cardiff&dest_id=-2598479&dest_type=city"
      ],
      "startDate": "2026-07-01",
      "days": 7,
      "currency": "GBP"
    }
  ],
  "concurrentJobs": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

#### URL-only (platform auto-detected)

```json
{ "startUrls": ["https://www.airbnb.com/rooms/12345678"] }
```

### Per-platform reference

| Platform | Key inputs | Notes |
|---|---|---|
| **airbnb** | `searchUrl` or `startUrls`, `numberOfLinks`, `checkInDate`, `numberOfDays`, `stayNights`, `concurrency` | Walks search pagination with Playwright, then fans out concurrent PDP GraphQL calls. |
| **booking-search** | `startUrls` (search URLs), `startDate`, `days`, `currency` | Warms cookies in a real browser, replays the search URL with each date. Proxy recommended. |
| **booking-calendar** | `startUrls` (hotel detail URLs), `targetMonth` | Reads the per-hotel price calendar month by month. |
| **google** | `location`, `pages`, `hotelClass` | Selenium-driven Google Travel scraper with star filters. |
| **trivago** | `startUrl`, `days`, `maxRetries` | SeleniumBase CDP intercepts the live GraphQL call; the API is then replayed for each date and page. |

### Output schema

Every dataset record matches `src/common/schema.py:HotelRecord`. The most useful fields:

```
platform              source_url           scraped_at
listing_id            name                 property_type
location              city / country       latitude / longitude
check_in              check_out            nights
currency              price_per_night      price_per_night_display
original_price_per_night    discount_percent      total_price
cleaning_fee / service_fee / taxes
rating                review_count         star_rating
rating_cleanliness / rating_value / …  (Airbnb sub-ratings)
guest_capacity        bedrooms / beds / bathrooms       pets_allowed
image_url             amenities[]          host
raw {…}               ## platform-specific extras
```

`raw` is a free-form bag where each scraper stows fields that don't map cleanly onto the canonical schema (Trivago advertiser IDs, Airbnb meta-description, Booking deal labels, etc.).

# Actor input Schema

## `platform` (type: `string`):

Which scraper to run. Auto-detected from URL if omitted.

## `startUrls` (type: `array`):

List of listing / search URLs. Required for Airbnb listing mode, Booking.com (both modes), Trivago (single).

## `searchUrl` (type: `string`):

Airbnb search results URL — listings will be harvested by walking pagination.

## `startUrl` (type: `string`):

Trivago search results URL — sets destination + filters; pricing is replayed via API.

## `location` (type: `string`):

Free-text destination (e.g. 'London', 'Paris 5th arr.').

## `numberOfLinks` (type: `integer`):

Maximum number of unique /rooms/ URLs to harvest from the Airbnb search results.

## `checkInDate` (type: `string`):

YYYY-MM-DD. Defaults to today. Used by the Airbnb scraper as the first of `numberOfDays` rolling start dates.

## `startDate` (type: `string`):

YYYY-MM-DD. Defaults to today. First check-in date for the Booking.com search scraper.

## `numberOfDays` (type: `integer`):

How many rolling start dates to query. With stayNights=1 this maps 1:1 to nights; with stayNights>1 each window slides one day forward.

## `days` (type: `integer`):

How many consecutive check-in dates to scan for the Booking search and Trivago scrapers.

## `stayNights` (type: `integer`):

Number of nights per booking window (Airbnb only). Booking and Trivago always use 1 night.

## `targetMonth` (type: `string`):

Calendar pagination stops once this month is reached. Format 'YYYY-MM' or 'December 2026'.

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

How many pages of Google Travel results to paginate through.

## `hotelClass` (type: `string`):

Restrict Google Travel results to hotels of the given star rating, or 'any' for no filter.

## `currency` (type: `string`):

ISO code (USD, GBP, EUR, …). Used both as a fetch parameter and a fallback when parsing price strings.

## `adults` (type: `integer`):

Number of adults in the booking party (Airbnb and Booking search).

## `children` (type: `integer`):

Number of children in the booking party (Airbnb only).

## `pets` (type: `integer`):

Number of pets in the booking party (Airbnb only — affects nightly price on pet-friendly listings).

## `concurrency` (type: `integer`):

How many Airbnb PDP API calls to run in parallel. Raise for speed, lower if you start seeing rate-limit errors.

## `concurrentJobs` (type: `integer`):

How many of the jobs\[] entries to run in parallel. Each platform spins its own browser, so don't push this high.

## `proxyConfiguration` (type: `object`):

Recommended for Booking.com search mode at any meaningful volume.

## Actor input object example

```json
{
  "platform": "airbnb",
  "startUrls": [],
  "searchUrl": "https://www.airbnb.com/s/Cardiff--United-Kingdom/homes",
  "startUrl": "https://www.trivago.co.uk/en-GB/srl/hotels-cardiff-united-kingdom?search=200-21013;dr-20260710-20260711;drs-40;pa-2;rc-1-2",
  "location": "London",
  "numberOfLinks": 20,
  "checkInDate": "2026-07-01",
  "startDate": "2026-07-01",
  "numberOfDays": 14,
  "days": 7,
  "stayNights": 1,
  "targetMonth": "2026-12",
  "pages": 3,
  "hotelClass": "any",
  "currency": "USD",
  "adults": 2,
  "children": 0,
  "pets": 0,
  "concurrency": 6,
  "concurrentJobs": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "platform": "airbnb",
    "startUrls": [],
    "searchUrl": "https://www.airbnb.com/s/Cardiff--United-Kingdom/homes",
    "startUrl": "https://www.trivago.co.uk/en-GB/srl/hotels-cardiff-united-kingdom?search=200-21013;dr-20260710-20260711;drs-40;pa-2;rc-1-2",
    "location": "London",
    "numberOfLinks": 20,
    "checkInDate": "2026-07-01",
    "startDate": "2026-07-01",
    "numberOfDays": 14,
    "days": 7,
    "stayNights": 1,
    "targetMonth": "2026-12",
    "pages": 3,
    "hotelClass": "any",
    "currency": "USD",
    "adults": 2,
    "children": 0,
    "pets": 0,
    "concurrency": 6,
    "concurrentJobs": 1,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/travel-hotel-intelligence").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 = {
    "platform": "airbnb",
    "startUrls": [],
    "searchUrl": "https://www.airbnb.com/s/Cardiff--United-Kingdom/homes",
    "startUrl": "https://www.trivago.co.uk/en-GB/srl/hotels-cardiff-united-kingdom?search=200-21013;dr-20260710-20260711;drs-40;pa-2;rc-1-2",
    "location": "London",
    "numberOfLinks": 20,
    "checkInDate": "2026-07-01",
    "startDate": "2026-07-01",
    "numberOfDays": 14,
    "days": 7,
    "stayNights": 1,
    "targetMonth": "2026-12",
    "pages": 3,
    "hotelClass": "any",
    "currency": "USD",
    "adults": 2,
    "children": 0,
    "pets": 0,
    "concurrency": 6,
    "concurrentJobs": 1,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("moving_beacon-owner1/travel-hotel-intelligence").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 '{
  "platform": "airbnb",
  "startUrls": [],
  "searchUrl": "https://www.airbnb.com/s/Cardiff--United-Kingdom/homes",
  "startUrl": "https://www.trivago.co.uk/en-GB/srl/hotels-cardiff-united-kingdom?search=200-21013;dr-20260710-20260711;drs-40;pa-2;rc-1-2",
  "location": "London",
  "numberOfLinks": 20,
  "checkInDate": "2026-07-01",
  "startDate": "2026-07-01",
  "numberOfDays": 14,
  "days": 7,
  "stayNights": 1,
  "targetMonth": "2026-12",
  "pages": 3,
  "hotelClass": "any",
  "currency": "USD",
  "adults": 2,
  "children": 0,
  "pets": 0,
  "concurrency": 6,
  "concurrentJobs": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call moving_beacon-owner1/travel-hotel-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=moving_beacon-owner1/travel-hotel-intelligence",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Travel & Hotel Intelligence",
        "description": "A unified Apify actor that scrapes hotel and short-let pricing from Airbnb, Booking.com, Google Hotels, and Trivago, returning all records in a single normalized schema. This tool is designed for rate shopping, price-comparison dashboards, and revenue-management feeds.",
        "version": "0.0",
        "x-build-id": "ii4ZS62fLxCPGlWNo"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/moving_beacon-owner1~travel-hotel-intelligence/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-moving_beacon-owner1-travel-hotel-intelligence",
                "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/moving_beacon-owner1~travel-hotel-intelligence/runs": {
            "post": {
                "operationId": "runs-sync-moving_beacon-owner1-travel-hotel-intelligence",
                "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/moving_beacon-owner1~travel-hotel-intelligence/run-sync": {
            "post": {
                "operationId": "run-sync-moving_beacon-owner1-travel-hotel-intelligence",
                "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": {
                    "platform": {
                        "title": "Platform",
                        "enum": [
                            "airbnb",
                            "booking-search",
                            "booking-calendar",
                            "google",
                            "trivago"
                        ],
                        "type": "string",
                        "description": "Which scraper to run. Auto-detected from URL if omitted."
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of listing / search URLs. Required for Airbnb listing mode, Booking.com (both modes), Trivago (single).",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "searchUrl": {
                        "title": "Airbnb search URL",
                        "type": "string",
                        "description": "Airbnb search results URL — listings will be harvested by walking pagination."
                    },
                    "startUrl": {
                        "title": "Trivago search URL",
                        "type": "string",
                        "description": "Trivago search results URL — sets destination + filters; pricing is replayed via API."
                    },
                    "location": {
                        "title": "Google Hotels — location",
                        "type": "string",
                        "description": "Free-text destination (e.g. 'London', 'Paris 5th arr.')."
                    },
                    "numberOfLinks": {
                        "title": "Airbnb — listings to collect",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of unique /rooms/ URLs to harvest from the Airbnb search results.",
                        "default": 20
                    },
                    "checkInDate": {
                        "title": "First check-in date",
                        "type": "string",
                        "description": "YYYY-MM-DD. Defaults to today. Used by the Airbnb scraper as the first of `numberOfDays` rolling start dates."
                    },
                    "startDate": {
                        "title": "Booking search — start date",
                        "type": "string",
                        "description": "YYYY-MM-DD. Defaults to today. First check-in date for the Booking.com search scraper."
                    },
                    "numberOfDays": {
                        "title": "Number of consecutive check-in dates (Airbnb)",
                        "minimum": 1,
                        "maximum": 365,
                        "type": "integer",
                        "description": "How many rolling start dates to query. With stayNights=1 this maps 1:1 to nights; with stayNights>1 each window slides one day forward.",
                        "default": 30
                    },
                    "days": {
                        "title": "Number of consecutive days (Booking search / Trivago)",
                        "minimum": 1,
                        "maximum": 90,
                        "type": "integer",
                        "description": "How many consecutive check-in dates to scan for the Booking search and Trivago scrapers.",
                        "default": 7
                    },
                    "stayNights": {
                        "title": "Stay length (nights)",
                        "minimum": 1,
                        "maximum": 30,
                        "type": "integer",
                        "description": "Number of nights per booking window (Airbnb only). Booking and Trivago always use 1 night.",
                        "default": 1
                    },
                    "targetMonth": {
                        "title": "Booking calendar — target month",
                        "type": "string",
                        "description": "Calendar pagination stops once this month is reached. Format 'YYYY-MM' or 'December 2026'."
                    },
                    "pages": {
                        "title": "Google Hotels — pages",
                        "minimum": 1,
                        "maximum": 30,
                        "type": "integer",
                        "description": "How many pages of Google Travel results to paginate through.",
                        "default": 5
                    },
                    "hotelClass": {
                        "title": "Google Hotels — star filter",
                        "enum": [
                            "any",
                            "class_2",
                            "class_3",
                            "class_4",
                            "class_5"
                        ],
                        "type": "string",
                        "description": "Restrict Google Travel results to hotels of the given star rating, or 'any' for no filter.",
                        "default": "any"
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "ISO code (USD, GBP, EUR, …). Used both as a fetch parameter and a fallback when parsing price strings.",
                        "default": "USD"
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Number of adults in the booking party (Airbnb and Booking search).",
                        "default": 2
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Number of children in the booking party (Airbnb only).",
                        "default": 0
                    },
                    "pets": {
                        "title": "Pets",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Number of pets in the booking party (Airbnb only — affects nightly price on pet-friendly listings).",
                        "default": 0
                    },
                    "concurrency": {
                        "title": "Airbnb — concurrent API requests",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "How many Airbnb PDP API calls to run in parallel. Raise for speed, lower if you start seeing rate-limit errors.",
                        "default": 6
                    },
                    "concurrentJobs": {
                        "title": "Concurrent jobs",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "How many of the jobs[] entries to run in parallel. Each platform spins its own browser, so don't push this high.",
                        "default": 1
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Recommended for Booking.com search mode at any meaningful volume.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
