# Google Flights Real Time API (`mtnrabi/google-flights-real-time-api`) Actor

Supports all basic & advanced filters for oneway & roundtrip flight searches.

- **URL**: https://apify.com/mtnrabi/google-flights-real-time-api.md
- **Developed by:** [Matan Rabi](https://apify.com/mtnrabi) (community)
- **Categories:** Travel, Agents
- **Stats:** 11 total users, 5 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

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

## Google Flights Real Time API

Search for cheap flights on Google Flights via a simple REST API.

### Endpoints

#### One-way flights
`POST /oneway`

Search for one-way flights between two airports on a given date.

#### Round-trip flights
`POST /roundtrip`

Search for round-trip flights between two airports with departure and return dates.

### Request body (JSON)

#### Common fields (both endpoints)

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `departure_date` | string | Yes | Departure date `YYYY-MM-DD` |
| `from_airport` | string | Yes | Departure airport IATA code |
| `to_airport` | string | Yes | Destination airport IATA code |
| `currency` | string | No | Currency code (default `usd`) |
| `max_price` | integer | No | Maximum price filter |
| `seat_type` | integer | No | `1` = Economy, `3` = Business |
| `passengers` | int[] | No | Passenger age codes |

#### One-way only

| Field | Type | Description |
|-------|------|-------------|
| `max_stops` | integer | Maximum number of stops |
| `airline_codes` | string[] | Include only these airlines |
| `exclude_airline_codes` | string[] | Exclude these airlines |
| `departure_time_min` | integer | Earliest departure hour (0-23) |
| `departure_time_max` | integer | Latest departure hour (0-23) |
| `arrival_time_min` | integer | Earliest arrival hour (0-23) |
| `arrival_time_max` | integer | Latest arrival hour (0-23) |

#### Round-trip only

| Field | Type | Description |
|-------|------|-------------|
| `return_date` | string | Return date `YYYY-MM-DD` (required) |
| `max_departure_stops` | integer | Max stops on outbound leg |
| `max_return_stops` | integer | Max stops on return leg |
| `departure_airline_codes` | string[] | Include only these airlines (outbound) |
| `departure_exclude_airline_codes` | string[] | Exclude airlines (outbound) |
| `return_airline_codes` | string[] | Include only these airlines (return) |
| `return_exclude_airline_codes` | string[] | Exclude airlines (return) |
| `departure_departure_time_min` | integer | Outbound earliest departure hour |
| `departure_departure_time_max` | integer | Outbound latest departure hour |
| `departure_arrival_time_min` | integer | Outbound earliest arrival hour |
| `departure_arrival_time_max` | integer | Outbound latest arrival hour |
| `return_departure_time_min` | integer | Return earliest departure hour |
| `return_departure_time_max` | integer | Return latest departure hour |
| `return_arrival_time_min` | integer | Return earliest arrival hour |
| `return_arrival_time_max` | integer | Return latest arrival hour |

### Example

#### One-way request
```json
POST /oneway
{
    "departure_date": "2026-04-15",
    "from_airport": "JFK",
    "to_airport": "TLV",
    "max_stops": 1,
    "currency": "usd"
}
````

#### Round-trip request

```json
POST /roundtrip
{
    "departure_date": "2026-04-15",
    "return_date": "2026-04-22",
    "from_airport": "JFK",
    "to_airport": "TLV",
    "currency": "usd"
}
```

### Response

Both endpoints return a JSON array of flight results sorted by best overall value. `price_insights_low` and `price_insights_high` represent Google's historical price range for the searched route and travel dates.

#### One-way response item example:

```json
{
    "price_range_in_relation_to_other_periods": "low",
    "price_insights_low": 65,
    "price_insights_high": 135,
    "from_airport": "Berlin (BER)",
    "to_airport": "Paris (CDG)",
    "departure_date": "2026-06-15",
    "price": "$56",
    "price_as_number": 56,
    "duration": "1 hr 50 min",
    "duration_seconds": 6600,
    "buy_link": "https://www.google.com/travel/flights?tfs=GjwSCjIwMjYtMDYtMTUiIAoDQkVSEgoyMDI2LTA2LTE1GgNDREcqAlUyMgQ1MTYxagUSA0JFUnIFEgNDREdCAQFIAZgBAg&curr=usd",
    "airline": "easyJet",
    "stops": 0,
    "stops_info": [],
    "departure_description": "10:15 AM on Mon, Jun 15",
    "arrival_description": "12:05 PM on Mon, Jun 15"
}
```

`stops_info` is an array describing each layover. Empty when nonstop. For flights with stops:

```json
"stops_info": [
    {
        "stop_airport": "AUH",
        "stop_duration_seconds": 5700
    }
]
```

#### Round-trip response item example:

```json
{
    "price_range_in_relation_to_other_periods": "low",
    "price_insights_low": 135,
    "price_insights_high": 205,
    "from_airport": "Berlin (BER)",
    "to_airport": "Paris (CDG)",
    "departure_date": "2026-06-01",
    "return_date": "2026-06-05",
    "total_price": "$119",
    "total_price_as_number": 119,
    "total_duration_seconds": 12900,
    "total_stops": 0,
    "buy_link": "https://www.google.com/travel/flights?tfs=GjwSCjIwMjYtMDYtMDEiIAoDQkVSEgoyMDI2LTA2LTAxGgNDREcqAlUyMgQ1MTU5agUSA0JFUnIFEgNDREcaPBIKMjAyNi0wNi0wNSIgCgNDREcSCjIwMjYtMDYtMDUaA0JFUioCVTIyBDUxNjJqBRIDQ0RHcgUSA0JFUkIBAUgBmAEB&curr=usd",
    "departure_flight_departure_description": "7:00 AM on Mon, Jun 1",
    "departure_flight_arrival_description": "8:50 AM on Mon, Jun 1",
    "departure_flight_airline": "easyJet",
    "departure_flight_stops": 0,
    "departure_flight_duration": "1 hr 50 min",
    "departure_stops_info": [],
    "return_flight_departure_description": "8:20 PM on Fri, Jun 5",
    "return_flight_arrival_description": "10:05 PM on Fri, Jun 5",
    "return_flight_airline": "easyJet",
    "return_flight_stops": 0,
    "return_flight_duration": "1 hr 45 min",
    "return_stops_info": []
}
```

`departure_stops_info` and `return_stops_info` are arrays describing each layover for the departure and return flights respectively. Empty when nonstop. For flights with stops:

```json
"departure_stops_info": [
    {
        "stop_airport": "CDG",
        "stop_duration_seconds": 46800
    },
    {
        "stop_airport": "BLR",
        "stop_duration_seconds": 34200
    }
]
```

# Actor input Schema

## `endpoint` (type: `string`):

Which search type to run.

## `departure_date` (type: `string`):

Departure date in YYYY-MM-DD format.

## `return_date` (type: `string`):

Return date in YYYY-MM-DD format. Required for roundtrip.

## `from_airport` (type: `string`):

IATA code of the departure airport (e.g. TLV, JFK).

## `to_airport` (type: `string`):

IATA code of the destination airport.

## `max_stops` (type: `integer`):

Maximum number of stops for one-way searches.

## `max_departure_stops` (type: `integer`):

Maximum stops on the outbound leg.

## `max_return_stops` (type: `integer`):

Maximum stops on the return leg.

## `airline_codes` (type: `array`):

Include only these airline IATA codes.

## `exclude_airline_codes` (type: `array`):

Exclude these airline IATA codes.

## `departure_airline_codes` (type: `array`):

Include only these airlines on the outbound leg.

## `departure_exclude_airline_codes` (type: `array`):

Exclude these airlines on the outbound leg.

## `return_airline_codes` (type: `array`):

Include only these airlines on the return leg.

## `return_exclude_airline_codes` (type: `array`):

Exclude these airlines on the return leg.

## `departure_time_min` (type: `integer`):

Earliest departure hour for one-way (0-23).

## `departure_time_max` (type: `integer`):

Latest departure hour for one-way (0-23).

## `arrival_time_min` (type: `integer`):

Earliest arrival hour for one-way (0-23).

## `arrival_time_max` (type: `integer`):

Latest arrival hour for one-way (0-23).

## `departure_departure_time_min` (type: `integer`):

Earliest outbound departure hour (0-23).

## `departure_departure_time_max` (type: `integer`):

Latest outbound departure hour (0-23).

## `departure_arrival_time_min` (type: `integer`):

Earliest outbound arrival hour (0-23).

## `departure_arrival_time_max` (type: `integer`):

Latest outbound arrival hour (0-23).

## `return_departure_time_min` (type: `integer`):

Earliest return departure hour (0-23).

## `return_departure_time_max` (type: `integer`):

Latest return departure hour (0-23).

## `return_arrival_time_min` (type: `integer`):

Earliest return arrival hour (0-23).

## `return_arrival_time_max` (type: `integer`):

Latest return arrival hour (0-23).

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

Currency code (default: usd).

## `max_price` (type: `integer`):

Maximum price filter.

## `seat_type` (type: `integer`):

1 = Economy, 3 = Business.

## `passengers` (type: `array`):

List of passenger age codes.

## Actor input object example

```json
{
  "endpoint": "oneway",
  "departure_date": "2026-12-01",
  "from_airport": "JFK",
  "to_airport": "LAX",
  "currency": "usd"
}
```

# Actor output Schema

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

No description

# 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 = {
    "departure_date": "2026-12-01",
    "from_airport": "JFK",
    "to_airport": "LAX"
};

// Run the Actor and wait for it to finish
const run = await client.actor("mtnrabi/google-flights-real-time-api").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 = {
    "departure_date": "2026-12-01",
    "from_airport": "JFK",
    "to_airport": "LAX",
}

# Run the Actor and wait for it to finish
run = client.actor("mtnrabi/google-flights-real-time-api").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 '{
  "departure_date": "2026-12-01",
  "from_airport": "JFK",
  "to_airport": "LAX"
}' |
apify call mtnrabi/google-flights-real-time-api --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Flights Real Time API",
        "description": "Supports all basic & advanced filters for oneway & roundtrip flight searches.",
        "version": "0.1",
        "x-build-id": "ctgrFalnbz4gGDAyM"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/mtnrabi~google-flights-real-time-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-mtnrabi-google-flights-real-time-api",
                "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/mtnrabi~google-flights-real-time-api/runs": {
            "post": {
                "operationId": "runs-sync-mtnrabi-google-flights-real-time-api",
                "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/mtnrabi~google-flights-real-time-api/run-sync": {
            "post": {
                "operationId": "run-sync-mtnrabi-google-flights-real-time-api",
                "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",
                "required": [
                    "endpoint",
                    "departure_date",
                    "from_airport",
                    "to_airport"
                ],
                "properties": {
                    "endpoint": {
                        "title": "Endpoint",
                        "enum": [
                            "oneway",
                            "roundtrip"
                        ],
                        "type": "string",
                        "description": "Which search type to run.",
                        "default": "oneway"
                    },
                    "departure_date": {
                        "title": "Departure date",
                        "type": "string",
                        "description": "Departure date in YYYY-MM-DD format."
                    },
                    "return_date": {
                        "title": "Return date (roundtrip only)",
                        "type": "string",
                        "description": "Return date in YYYY-MM-DD format. Required for roundtrip."
                    },
                    "from_airport": {
                        "title": "From airport",
                        "type": "string",
                        "description": "IATA code of the departure airport (e.g. TLV, JFK)."
                    },
                    "to_airport": {
                        "title": "To airport",
                        "type": "string",
                        "description": "IATA code of the destination airport."
                    },
                    "max_stops": {
                        "title": "Max stops (oneway)",
                        "type": "integer",
                        "description": "Maximum number of stops for one-way searches."
                    },
                    "max_departure_stops": {
                        "title": "Max departure stops (roundtrip)",
                        "type": "integer",
                        "description": "Maximum stops on the outbound leg."
                    },
                    "max_return_stops": {
                        "title": "Max return stops (roundtrip)",
                        "type": "integer",
                        "description": "Maximum stops on the return leg."
                    },
                    "airline_codes": {
                        "title": "Airline codes (oneway)",
                        "type": "array",
                        "description": "Include only these airline IATA codes.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "exclude_airline_codes": {
                        "title": "Exclude airline codes (oneway)",
                        "type": "array",
                        "description": "Exclude these airline IATA codes.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "departure_airline_codes": {
                        "title": "Departure airline codes (roundtrip)",
                        "type": "array",
                        "description": "Include only these airlines on the outbound leg.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "departure_exclude_airline_codes": {
                        "title": "Departure exclude airline codes (roundtrip)",
                        "type": "array",
                        "description": "Exclude these airlines on the outbound leg.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "return_airline_codes": {
                        "title": "Return airline codes (roundtrip)",
                        "type": "array",
                        "description": "Include only these airlines on the return leg.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "return_exclude_airline_codes": {
                        "title": "Return exclude airline codes (roundtrip)",
                        "type": "array",
                        "description": "Exclude these airlines on the return leg.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "departure_time_min": {
                        "title": "Departure time min (oneway, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest departure hour for one-way (0-23)."
                    },
                    "departure_time_max": {
                        "title": "Departure time max (oneway, hour 0-23)",
                        "type": "integer",
                        "description": "Latest departure hour for one-way (0-23)."
                    },
                    "arrival_time_min": {
                        "title": "Arrival time min (oneway, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest arrival hour for one-way (0-23)."
                    },
                    "arrival_time_max": {
                        "title": "Arrival time max (oneway, hour 0-23)",
                        "type": "integer",
                        "description": "Latest arrival hour for one-way (0-23)."
                    },
                    "departure_departure_time_min": {
                        "title": "Outbound departure time min (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest outbound departure hour (0-23)."
                    },
                    "departure_departure_time_max": {
                        "title": "Outbound departure time max (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Latest outbound departure hour (0-23)."
                    },
                    "departure_arrival_time_min": {
                        "title": "Outbound arrival time min (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest outbound arrival hour (0-23)."
                    },
                    "departure_arrival_time_max": {
                        "title": "Outbound arrival time max (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Latest outbound arrival hour (0-23)."
                    },
                    "return_departure_time_min": {
                        "title": "Return departure time min (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest return departure hour (0-23)."
                    },
                    "return_departure_time_max": {
                        "title": "Return departure time max (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Latest return departure hour (0-23)."
                    },
                    "return_arrival_time_min": {
                        "title": "Return arrival time min (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Earliest return arrival hour (0-23)."
                    },
                    "return_arrival_time_max": {
                        "title": "Return arrival time max (roundtrip, hour 0-23)",
                        "type": "integer",
                        "description": "Latest return arrival hour (0-23)."
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency code (default: usd).",
                        "default": "usd"
                    },
                    "max_price": {
                        "title": "Max price",
                        "type": "integer",
                        "description": "Maximum price filter."
                    },
                    "seat_type": {
                        "title": "Seat type",
                        "type": "integer",
                        "description": "1 = Economy, 3 = Business."
                    },
                    "passengers": {
                        "title": "Passengers",
                        "type": "array",
                        "description": "List of passenger age codes.",
                        "items": {
                            "type": "integer"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
