# Trip.com Scraper (`one-api/trip-com-scraper`) Actor

Scrape Trip.com hotels, train routes, and attractions worldwide. Hotels: autocomplete a city, search by location / coordinates / Trip.com URL, get full hotel details by ID or URL. Trains: search routes between cities + per-train details. Attractions: search things-to-do by city + per-POI details.

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

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Trip.com Scraper

Scrape **Trip.com** hotels, train routes, and attractions worldwide via the realtyapi.io Trip.com API.

### What it does

- **🏨 Hotel Details** — auto-detects each input as `hotelId` (digits) or `trip.com` URL; returns the full record (rooms, amenities, policies, location, reviews summary, full image list, nearby POIs).
- **🔎 Hotel Search** — 3 modes: by location name, by `lat,lng[,radius_km]` coordinates, or by Trip.com listing URL. All filters (dates / guests / price / star / sort) apply.
- **🔤 Destination Autocomplete** — resolve free-text city/destination → `cityId` + Trip.com city URL.
- **🚄 Trains** — route search (`Origin → Destination [date]`) returns one row per departure; per-train detail row by `trainNo`.
- **🎢 Attractions** — things-to-do search by city keyword + per-POI detail by `poiId`.

### Output

- **One flat dataset row per result** — hotel / train / POI / autocomplete row.
- Columns: `Mode`, `Input Given`, `ID`, `Name`, `City`, `Country`, `Address`, `Price`, `Currency`, `StarRating`, `Rating`, `ReviewCount`, `Latitude`, `Longitude`, `Extra`, `Cover Photo`, `Listing URL`.
- Full upstream JSON kept in the `Raw` column for power users (rooms, amenities, segments, photos, etc.).

### Inputs

- Each section is independent — fill only the ones you need.
- Multiple inputs per section: one per line.
- The 🗓 Hotel Filters block (check-in/out, adults, children, rooms, sort, price, star, resultCount, page) applies to every hotel search and detail call.

### Pricing

- Pay per result: **$3 per 1,000 dataset items** — same rate on every Apify plan tier.
- Apify start fee: $0.00005 per run.

### Notes

- Trip.com SSR caps each hotel search page at ~12 hotels; this actor stitches multiple SSR + SEO sources per city to deliver up to 100 unique hotels per query.
- Date format is `YYYY-MM-DD`; leave check-in / check-out blank to default to ~30 days out.
- Train routes work best on European (Eurostar, France, Spain) and Chinese networks — those are the corridors with full SEO route pages on Trip.com.
- Attraction detail by arbitrary `poiId` works for POIs in Trip.com's SEO feeds (~350 well-known attractions across the top ~25 cities); deep-tail POIs may return a 404.

### Errors

- Failures land in the dataset as rows with `Mode = "ERROR"` and the upstream error message in `Name` — nothing is silently dropped.

# Actor input Schema

## `property_inputs` (type: `array`):

Auto-detects each entry and calls the right endpoint:
• Digits only (e.g. `2985758`) → `/details/byid`
• `https://www.trip.com/hotels/...` → `/details/byurl`
• Anything else → treated as a hotel name / address (resolved via search).

Each row in the dataset = one full hotel record (rooms, amenities, policies, reviews, location, full image list — JSON in `Raw`).
## `search_inputs` (type: `array`):

Auto-detects each entry and routes to the right `/search/*` endpoint:
• `https://www.trip.com/hotels/...` → `/search/byurl`
• `lat,lng` or `lat,lng,radius_km` (e.g. `13.7563,100.5018,5`) → `/search/bycoordinates`
• Anything else (city / location name, e.g. `Bangkok`) → `/search/bylocation`

Filters below (check-in/out, guests, price, star, sort) apply to every search call. Each hit returns one dataset row per hotel.
## `autocomplete_inputs` (type: `array`):

Free-text city/destination lookup. Each query returns up to `Autocomplete results per query` rows with `cityId`, `slug`, and the Trip.com city URL — handy when you want the cityId before running a hotel search.
## `autocomplete_result_count` (type: `integer`):

How many city suggestions to keep per autocomplete query.
## `train_inputs` (type: `array`):

Search train routes between two cities/stations. Format examples:
• `Paris → London`
• `London > Amsterdam`
• `Beijing -> Shanghai 2026-08-15`
• `Paris,Lyon` (comma-separated also works)

Each result row = one departure (depart/arrival time, duration, fare, carrier).
## `train_detail_inputs` (type: `array`):

Look up a specific train by its trainNo on a known route. Format:
• `Paris → London | 9024`
• `Beijing → Shanghai | G1`

Returns the enriched detail row for that single train.
## `attraction_inputs` (type: `array`):

Free-text city / region keyword (e.g. `London`, `Tokyo`). Leave a row blank to fetch the global SEO feed.

Each hit returns one dataset row per POI (name, rating, price, image, ranking).
## `attraction_result_count` (type: `integer`):

How many POIs per attraction-search query (Trip.com SSR caps at ~12 per page).
## `attraction_detail_inputs` (type: `array`):

Look up a Trip.com attraction by `poiId` (e.g. `78693` = Westminster Abbey, `78696` = British Museum, `81747` = London Eye). One row per poiId.
## `checkIn` (type: `string`):

YYYY-MM-DD. Defaults to ~30 days out when blank.
## `checkOut` (type: `string`):

YYYY-MM-DD. Defaults to ~2 days after check-in when blank.
## `adults` (type: `integer`):

Adults per room.
## `children` (type: `integer`):

Children per room.
## `rooms` (type: `integer`):

Number of rooms.
## `sortOrder` (type: `string`):

Trip.com hotel sort order.
## `priceRange` (type: `string`):

Format: `min:80,max:300` — or just `min:80` / `max:300`. Leave blank for no price filter.
## `starRating` (type: `string`):

Pipe-separated star ratings, e.g. `4|5` (4★ + 5★). Leave blank for all.
## `resultCount` (type: `integer`):

How many hotels per `/search/*` query (capped at 100 by Trip.com).
## `page` (type: `integer`):

1-based page index for hotel search (each page = `Hotel results per query` rows).
## `train_result_count` (type: `integer`):

How many train departures per route query.

## Actor input object example

```json
{
  "property_inputs": [
    "2985758",
    "https://www.trip.com/hotels/detail?cityid=338&hotelid=2132268"
  ],
  "search_inputs": [
    "Bangkok",
    "London"
  ],
  "autocomplete_inputs": [],
  "autocomplete_result_count": 10,
  "train_inputs": [
    "Paris → London 2026-08-15"
  ],
  "train_detail_inputs": [],
  "attraction_inputs": [
    "London"
  ],
  "attraction_result_count": 12,
  "attraction_detail_inputs": [],
  "checkIn": "2026-08-10",
  "checkOut": "2026-08-12",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "sortOrder": "0",
  "priceRange": "",
  "starRating": "",
  "resultCount": 30,
  "page": 1,
  "train_result_count": 30
}
````

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "property_inputs": [
        "2985758",
        "https://www.trip.com/hotels/detail?cityid=338&hotelid=2132268"
    ],
    "search_inputs": [
        "Bangkok",
        "London"
    ],
    "autocomplete_inputs": [],
    "train_inputs": [
        "Paris → London 2026-08-15"
    ],
    "train_detail_inputs": [],
    "attraction_inputs": [
        "London"
    ],
    "attraction_detail_inputs": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("one-api/trip-com-scraper").call(input);

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "property_inputs": [
        "2985758",
        "https://www.trip.com/hotels/detail?cityid=338&hotelid=2132268",
    ],
    "search_inputs": [
        "Bangkok",
        "London",
    ],
    "autocomplete_inputs": [],
    "train_inputs": ["Paris → London 2026-08-15"],
    "train_detail_inputs": [],
    "attraction_inputs": ["London"],
    "attraction_detail_inputs": [],
}

# Run the Actor and wait for it to finish
run = client.actor("one-api/trip-com-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "property_inputs": [
    "2985758",
    "https://www.trip.com/hotels/detail?cityid=338&hotelid=2132268"
  ],
  "search_inputs": [
    "Bangkok",
    "London"
  ],
  "autocomplete_inputs": [],
  "train_inputs": [
    "Paris → London 2026-08-15"
  ],
  "train_detail_inputs": [],
  "attraction_inputs": [
    "London"
  ],
  "attraction_detail_inputs": []
}' |
apify call one-api/trip-com-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Trip.com Scraper",
        "description": "Scrape Trip.com hotels, train routes, and attractions worldwide. Hotels: autocomplete a city, search by location / coordinates / Trip.com URL, get full hotel details by ID or URL. Trains: search routes between cities + per-train details. Attractions: search things-to-do by city + per-POI details.",
        "version": "1.0",
        "x-build-id": "DhU1LGFbEsvFxNbFm"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/one-api~trip-com-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-one-api-trip-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/one-api~trip-com-scraper/runs": {
            "post": {
                "operationId": "runs-sync-one-api-trip-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/one-api~trip-com-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-one-api-trip-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "property_inputs": {
                        "title": "Hotel ID, URL, or address (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry and calls the right endpoint:\n• Digits only (e.g. `2985758`) → `/details/byid`\n• `https://www.trip.com/hotels/...` → `/details/byurl`\n• Anything else → treated as a hotel name / address (resolved via search).\n\nEach row in the dataset = one full hotel record (rooms, amenities, policies, reviews, location, full image list — JSON in `Raw`).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "search_inputs": {
                        "title": "Hotel search query (one per line)",
                        "type": "array",
                        "description": "Auto-detects each entry and routes to the right `/search/*` endpoint:\n• `https://www.trip.com/hotels/...` → `/search/byurl`\n• `lat,lng` or `lat,lng,radius_km` (e.g. `13.7563,100.5018,5`) → `/search/bycoordinates`\n• Anything else (city / location name, e.g. `Bangkok`) → `/search/bylocation`\n\nFilters below (check-in/out, guests, price, star, sort) apply to every search call. Each hit returns one dataset row per hotel.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "autocomplete_inputs": {
                        "title": "Autocomplete query (one per line)",
                        "type": "array",
                        "description": "Free-text city/destination lookup. Each query returns up to `Autocomplete results per query` rows with `cityId`, `slug`, and the Trip.com city URL — handy when you want the cityId before running a hotel search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "autocomplete_result_count": {
                        "title": "Autocomplete results per query",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many city suggestions to keep per autocomplete query.",
                        "default": 10
                    },
                    "train_inputs": {
                        "title": "Train route (one per line — `Origin → Destination [YYYY-MM-DD]`)",
                        "type": "array",
                        "description": "Search train routes between two cities/stations. Format examples:\n• `Paris → London`\n• `London > Amsterdam`\n• `Beijing -> Shanghai 2026-08-15`\n• `Paris,Lyon` (comma-separated also works)\n\nEach result row = one departure (depart/arrival time, duration, fare, carrier).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "train_detail_inputs": {
                        "title": "Train detail (one per line — `Origin → Destination | trainNo`)",
                        "type": "array",
                        "description": "Look up a specific train by its trainNo on a known route. Format:\n• `Paris → London | 9024`\n• `Beijing → Shanghai | G1`\n\nReturns the enriched detail row for that single train.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "attraction_inputs": {
                        "title": "Attraction search location (one per line)",
                        "type": "array",
                        "description": "Free-text city / region keyword (e.g. `London`, `Tokyo`). Leave a row blank to fetch the global SEO feed.\n\nEach hit returns one dataset row per POI (name, rating, price, image, ranking).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "attraction_result_count": {
                        "title": "Attraction results per query",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many POIs per attraction-search query (Trip.com SSR caps at ~12 per page).",
                        "default": 12
                    },
                    "attraction_detail_inputs": {
                        "title": "Attraction poiId (one per line)",
                        "type": "array",
                        "description": "Look up a Trip.com attraction by `poiId` (e.g. `78693` = Westminster Abbey, `78696` = British Museum, `81747` = London Eye). One row per poiId.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkIn": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "YYYY-MM-DD. Defaults to ~30 days out when blank.",
                        "default": "2026-08-10"
                    },
                    "checkOut": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "YYYY-MM-DD. Defaults to ~2 days after check-in when blank.",
                        "default": "2026-08-12"
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Adults per room.",
                        "default": 2
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Children per room.",
                        "default": 0
                    },
                    "rooms": {
                        "title": "Rooms",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Number of rooms.",
                        "default": 1
                    },
                    "sortOrder": {
                        "title": "Sort",
                        "enum": [
                            "0",
                            "1",
                            "2",
                            "3"
                        ],
                        "type": "string",
                        "description": "Trip.com hotel sort order.",
                        "default": "0"
                    },
                    "priceRange": {
                        "title": "Price range (USD)",
                        "type": "string",
                        "description": "Format: `min:80,max:300` — or just `min:80` / `max:300`. Leave blank for no price filter.",
                        "default": ""
                    },
                    "starRating": {
                        "title": "Star rating filter",
                        "type": "string",
                        "description": "Pipe-separated star ratings, e.g. `4|5` (4★ + 5★). Leave blank for all.",
                        "default": ""
                    },
                    "resultCount": {
                        "title": "Hotel results per query",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many hotels per `/search/*` query (capped at 100 by Trip.com).",
                        "default": 30
                    },
                    "page": {
                        "title": "Page",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "1-based page index for hotel search (each page = `Hotel results per query` rows).",
                        "default": 1
                    },
                    "train_result_count": {
                        "title": "Train results per route",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "How many train departures per route query.",
                        "default": 30
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
