# Google Flights Scraper (`crawlio/google-flights-scraper`) Actor

Extract live flight prices, schedules, and multi-city travel data from Google Flights instantly.

- **URL**: https://apify.com/crawlio/google-flights-scraper.md
- **Developed by:** [Crawlio](https://apify.com/crawlio) (community)
- **Categories:** Travel
- **Stats:** 3 total users, 0 monthly users, 70.7% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 search 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

## Google Flights Scraper

### Overview
Google Flights Scraper searches Google Flights and stores one dataset item per returned itinerary. It supports one-way, round-trip, and multi-city searches.

### Supported searches
- **One-way**: one origin, one destination, one departure date.
- **Round-trip**: one outbound leg and one return leg.
- **Multi-city**: two or more ordered flight legs.

### Quick start
1. Open the Actor on Apify.
2. Select `oneWay`, `roundTrip`, or `multiCity`.
3. Enter airport IATA codes, dates, passengers, currency, and language.
4. Use Apify Proxy when Google blocks direct requests; multi-city runs enable it automatically on Apify.
5. Run the Actor and download results from the Dataset tab.

### Configuration

| Field | Description | Default |
| --- | --- | --- |
| `operation` | Search mode: `oneWay`, `roundTrip`, or `multiCity`. | `oneWay` |
| `origin`, `dest` | Three-letter IATA airport codes, for example `JFK` and `LHR`. | `JFK`, `LHR` |
| `date`, `returnDate` | Travel dates in `YYYY-MM-DD` format. Leave empty to use valid future dates automatically. | Empty |
| `seatClass` | `economy`, `premium-economy`, `business`, or `first`. | `economy` |
| `stops` | `0` any stops, `1` nonstop, `2` max one stop. | `0` |
| `sort` | `best`, `price`, or `duration`. | `best` |
| `currency`, `language` | Google Flights currency and locale, for example `USD` and `en-US`. | `USD`, `en-US` |
| `fetchAllLegs` | Multi-city only: `true` to fetch the complete itinerary across all flight legs, `false` to only fetch the first leg. | `false` |
| `proxyConfiguration` | Apify Proxy settings. Multi-city runs on Apify automatically use proxy because it improves reliability. | `{"useApifyProxy": false}` |

### Usage examples

#### One-way input

```json
{
  "operation": "oneWay",
  "oneWay": {
    "origin": "JFK",
    "dest": "LHR",
    "date": "",
    "adults": 1,
    "seatClass": "economy",
    "stops": 0,
    "sort": "best",
    "currency": "USD",
    "language": "en-US"
  },
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

#### Round-trip input

```json
{
  "operation": "roundTrip",
  "roundTrip": {
    "origin": "JFK",
    "dest": "LHR",
    "date": "",
    "returnDate": "",
    "adults": 1,
    "seatClass": "economy",
    "currency": "USD",
    "language": "en-US"
  },
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

#### Multi-city input

```json
{
  "operation": "multiCity",
  "multiCity": {
    "legs": "[{\"origin\":\"JFK\",\"dest\":\"LHR\",\"date\":\"2026-06-01\"},{\"origin\":\"LHR\",\"dest\":\"CDG\",\"date\":\"2026-06-05\"}]",
    "adults": 1,
    "seatClass": "economy",
    "stops": 0,
    "sort": "best",
    "currency": "USD",
    "language": "en-US",
    "fetchAllLegs": false
  },
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

### Output

Results are written to the default dataset. The key-value store record `OUTPUT` contains a compact run summary.

```json
{
  "price": 434,
  "airlines": ["Icelandair"],
  "departure": "2026-06-01T20:30",
  "arrival": "2026-06-02T11:55",
  "stops": 1,
  "duration_min": 545,
  "segments": [
    {
      "from": "JFK",
      "from_name": "John F. Kennedy International Airport",
      "to": "KEF",
      "to_name": "Keflavik International Airport",
      "departure": "2026-06-01T20:30",
      "arrival": "2026-06-02T06:20",
      "duration_min": 350,
      "plane": "Airbus A321neo"
    }
  ]
}
```

### Reliability notes

- Google Flights can return consent, verification, or incomplete pages from shared IPs.
- The Actor retries Google requests with fresh TLS/client sessions before failing.
- Multi-city runs use Apify Proxy automatically on the platform because it improves reliability.
- Prefilled input is designed to complete in well under five minutes.

### Legal note

This Actor collects publicly available flight-search results. Make sure your use case complies with applicable laws, regulations, and website terms.

# Actor input Schema

## `operation` (type: `string`):

Choose which search flow to run.

## `oneWay` (type: `object`):

Search one-way flights for a single leg (origin → destination) on a specific date.

## `roundTrip` (type: `object`):

Search round-trip flights with a departure date and a return date.

## `multiCity` (type: `object`):

Search multi-city itineraries across two or more legs.

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

Select proxies to be used.

## Actor input object example

```json
{
  "operation": "oneWay",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

One dataset item per returned itinerary.

## `runSummary` (type: `string`):

Short summary stored in the OUTPUT record of the default key-value store.

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlio/google-flights-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "proxyConfiguration": { "useApifyProxy": False } }

# Run the Actor and wait for it to finish
run = client.actor("crawlio/google-flights-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call crawlio/google-flights-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Flights Scraper",
        "description": "Extract live flight prices, schedules, and multi-city travel data from Google Flights instantly.",
        "version": "0.1",
        "x-build-id": "HJ4f4UlFgojv7ZLtT"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlio~google-flights-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlio-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawlio~google-flights-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlio-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawlio~google-flights-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlio-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "operation": {
                        "title": "Operation",
                        "enum": [
                            "oneWay",
                            "roundTrip",
                            "multiCity"
                        ],
                        "type": "string",
                        "description": "Choose which search flow to run.",
                        "default": "oneWay"
                    },
                    "oneWay": {
                        "title": "One-way input",
                        "type": "object",
                        "description": "Search one-way flights for a single leg (origin → destination) on a specific date.",
                        "properties": {
                            "origin": {
                                "title": "Origin (IATA)",
                                "type": "string",
                                "description": "3-letter origin airport code (IATA), for example JFK, NYC, LHR.",
                                "default": "JFK",
                                "editor": "textfield"
                            },
                            "dest": {
                                "title": "Destination (IATA)",
                                "type": "string",
                                "description": "3-letter destination airport code (IATA), for example LHR, CDG, DXB.",
                                "default": "LHR",
                                "editor": "textfield"
                            },
                            "date": {
                                "title": "Departure date",
                                "type": "string",
                                "description": "Departure date in YYYY-MM-DD format. Leave empty to use a valid future date automatically.",
                                "default": "",
                                "editor": "datepicker",
                                "dateType": "absolute"
                            },
                            "adults": {
                                "title": "Adults",
                                "type": "integer",
                                "description": "Number of adult passengers.",
                                "default": 1,
                                "minimum": 1,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "children": {
                                "title": "Children",
                                "type": "integer",
                                "description": "Number of child passengers.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsInSeat": {
                                "title": "Infants in seat",
                                "type": "integer",
                                "description": "Number of infants with their own seat.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsOnLap": {
                                "title": "Infants on lap",
                                "type": "integer",
                                "description": "Number of infants on lap (must be <= adults).",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "seatClass": {
                                "title": "Seat class",
                                "type": "string",
                                "description": "Cabin class.",
                                "default": "economy",
                                "enum": [
                                    "economy",
                                    "premium-economy",
                                    "business",
                                    "first"
                                ],
                                "editor": "select"
                            },
                            "stops": {
                                "title": "Stops filter",
                                "type": "integer",
                                "description": "0 = any, 1 = nonstop, 2 = max 1 stop",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 2,
                                "editor": "number"
                            },
                            "preferred_airlines": {
                                "title": "Preferred airlines",
                                "type": "string",
                                "description": "Comma-separated airline codes or alliance names, for example BA,AA or STAR_ALLIANCE.",
                                "default": "",
                                "editor": "textfield"
                            },
                            "sort": {
                                "title": "Sort",
                                "type": "string",
                                "description": "Sorting preference.",
                                "default": "best",
                                "enum": [
                                    "best",
                                    "price",
                                    "duration"
                                ],
                                "editor": "select"
                            },
                            "currency": {
                                "title": "Currency",
                                "type": "string",
                                "description": "Currency code used by Google Flights (e.g. USD, EUR, BDT).",
                                "default": "USD",
                                "editor": "textfield"
                            },
                            "language": {
                                "title": "Language",
                                "type": "string",
                                "description": "Language/locale code (e.g. en-US, en-GB).",
                                "default": "en-US",
                                "editor": "textfield"
                            }
                        },
                        "additionalProperties": false
                    },
                    "roundTrip": {
                        "title": "Round-trip input",
                        "type": "object",
                        "description": "Search round-trip flights with a departure date and a return date.",
                        "properties": {
                            "origin": {
                                "title": "Origin (IATA)",
                                "type": "string",
                                "description": "3-letter origin airport code (IATA), for example JFK, CDG, LHR.",
                                "default": "JFK",
                                "editor": "textfield"
                            },
                            "dest": {
                                "title": "Destination (IATA)",
                                "type": "string",
                                "description": "3-letter destination airport code (IATA).",
                                "default": "LHR",
                                "editor": "textfield"
                            },
                            "date": {
                                "title": "Departure date",
                                "type": "string",
                                "description": "Departure date in YYYY-MM-DD format. Leave empty to use a valid future date automatically.",
                                "default": "",
                                "editor": "datepicker",
                                "dateType": "absolute"
                            },
                            "returnDate": {
                                "title": "Return date",
                                "type": "string",
                                "description": "Return date in YYYY-MM-DD format. Leave empty to use a valid future return date automatically.",
                                "default": "",
                                "editor": "datepicker",
                                "dateType": "absolute"
                            },
                            "adults": {
                                "title": "Adults",
                                "type": "integer",
                                "description": "Number of adult passengers.",
                                "default": 1,
                                "minimum": 1,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "children": {
                                "title": "Children",
                                "type": "integer",
                                "description": "Number of child passengers.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsInSeat": {
                                "title": "Infants in seat",
                                "type": "integer",
                                "description": "Number of infants with their own seat.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsOnLap": {
                                "title": "Infants on lap",
                                "type": "integer",
                                "description": "Number of infants on lap (must be <= adults).",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "seatClass": {
                                "title": "Seat class",
                                "type": "string",
                                "description": "Cabin class.",
                                "default": "economy",
                                "enum": [
                                    "economy",
                                    "premium-economy",
                                    "business",
                                    "first"
                                ],
                                "editor": "select"
                            },
                            "stops": {
                                "title": "Stops filter",
                                "type": "integer",
                                "description": "0 = any, 1 = nonstop, 2 = max 1 stop",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 2,
                                "editor": "number"
                            },
                            "preferred_airlines": {
                                "title": "Preferred airlines",
                                "type": "string",
                                "description": "Comma-separated airline codes or alliance names, for example BA,AA or STAR_ALLIANCE.",
                                "default": "",
                                "editor": "textfield"
                            },
                            "sort": {
                                "title": "Sort",
                                "type": "string",
                                "description": "Sorting preference.",
                                "default": "best",
                                "enum": [
                                    "best",
                                    "price",
                                    "duration"
                                ],
                                "editor": "select"
                            },
                            "currency": {
                                "title": "Currency",
                                "type": "string",
                                "description": "Currency code used by Google Flights (e.g. USD, EUR).",
                                "default": "USD",
                                "editor": "textfield"
                            },
                            "language": {
                                "title": "Language",
                                "type": "string",
                                "description": "Language/locale code (e.g. en-US).",
                                "default": "en-US",
                                "editor": "textfield"
                            }
                        },
                        "additionalProperties": false
                    },
                    "multiCity": {
                        "title": "Multi-city input",
                        "type": "object",
                        "description": "Search multi-city itineraries across two or more legs.",
                        "properties": {
                            "legs": {
                                "title": "Multi-City JSON",
                                "type": "string",
                                "description": "At least 2 legs; each includes origin, dest, and date in YYYY-MM-DD format. Expired dates are moved to valid future dates automatically.",
                                "editor": "textarea",
                                "default": "[\n  {\n    \"origin\": \"JFK\",\n    \"dest\": \"LHR\",\n    \"date\": \"2026-06-01\"\n  },\n  {\n    \"origin\": \"LHR\",\n    \"dest\": \"CDG\",\n    \"date\": \"2026-06-05\"\n  }\n]"
                            },
                            "adults": {
                                "title": "Adults",
                                "type": "integer",
                                "description": "Number of adult passengers.",
                                "default": 1,
                                "minimum": 1,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "children": {
                                "title": "Children",
                                "type": "integer",
                                "description": "Number of child passengers.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsInSeat": {
                                "title": "Infants in seat",
                                "type": "integer",
                                "description": "Number of infants with their own seat.",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "infantsOnLap": {
                                "title": "Infants on lap",
                                "type": "integer",
                                "description": "Number of infants on lap (must be <= adults).",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 9,
                                "editor": "number"
                            },
                            "seatClass": {
                                "title": "Seat class",
                                "type": "string",
                                "description": "Cabin class.",
                                "default": "economy",
                                "enum": [
                                    "economy",
                                    "premium-economy",
                                    "business",
                                    "first"
                                ],
                                "editor": "select"
                            },
                            "stops": {
                                "title": "Stops filter",
                                "type": "integer",
                                "description": "0 = any, 1 = nonstop, 2 = max 1 stop",
                                "default": 0,
                                "minimum": 0,
                                "maximum": 2,
                                "editor": "number"
                            },
                            "preferred_airlines": {
                                "title": "Preferred airlines",
                                "type": "string",
                                "description": "Comma-separated airline codes or alliance names, for example BA,AA or STAR_ALLIANCE.",
                                "default": "",
                                "editor": "textfield"
                            },
                            "maxStops": {
                                "title": "Max stops (override)",
                                "type": "integer",
                                "description": "Optional stop-count override for advanced multi-city searches.",
                                "default": 0,
                                "editor": "number"
                            },
                            "sort": {
                                "title": "Sort",
                                "type": "string",
                                "description": "Sorting preference.",
                                "default": "best",
                                "enum": [
                                    "best",
                                    "price",
                                    "duration"
                                ],
                                "editor": "select"
                            },
                            "currency": {
                                "title": "Currency",
                                "type": "string",
                                "description": "Currency code used by Google Flights (e.g. USD, EUR).",
                                "default": "USD",
                                "editor": "textfield"
                            },
                            "language": {
                                "title": "Language",
                                "type": "string",
                                "description": "Language/locale code (e.g. en-US).",
                                "default": "en-US",
                                "editor": "textfield"
                            },
                            "fetchAllLegs": {
                                "title": "Fetch all legs",
                                "type": "boolean",
                                "description": "When enabled (default), the scraper fetches complete multi-leg itineraries by making additional requests for each subsequent leg. Disable for faster results that only include first-leg options.",
                                "default": true
                            }
                        },
                        "additionalProperties": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Settings",
                        "type": "object",
                        "description": "Select proxies to be used.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
