# Open-Meteo Weather Scraper (`crawlerbros/open-meteo-scraper`) Actor

Scrape Open-Meteo, free open-source weather API with global forecasts, historical weather, air quality, marine conditions, and climate data. No API key required.

- **URL**: https://apify.com/crawlerbros/open-meteo-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 4 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## Open-Meteo Weather Scraper

Extract weather data from **Open-Meteo** — a free, open-source weather API with global coverage. Get weather forecasts up to 16 days ahead, historical weather going back to 1940, air quality data, marine conditions, and city geocoding. No API key required.

### What you can scrape

- **Weather forecasts** — up to 16 days of daily and hourly weather for any location worldwide
- **Historical weather** — past weather data for any date range since 1940
- **Air quality** — PM2.5, PM10, CO, NO2, ozone levels and European AQI index
- **Marine conditions** — wave heights, wave periods, swell data for coastal/ocean locations
- **Geocoding** — find latitude/longitude coordinates for any city worldwide

### Input

| Field | Type | Description |
|---|---|---|
| `mode` | select | What to fetch (see modes below) |
| `location` | string | City name for automatic geocoding (e.g. `Berlin`, `New York`) |
| `latitude` | number | Geographic latitude (-90 to 90), overrides location |
| `longitude` | number | Geographic longitude (-180 to 180), overrides location |
| `timezone` | select | Timezone for results (default: `auto`) |
| `forecastDays` | integer | Days to forecast, 1–16 (default: 7) |
| `startDate` | string | Historical start date YYYY-MM-DD |
| `endDate` | string | Historical end date YYYY-MM-DD |
| `hourlyVars` | array | Hourly variables to include |
| `dailyVars` | array | Daily summary variables to include |
| `cityName` | string | City to search in geocode mode |
| `country` | string | Country filter for geocode mode |
| `maxItems` | integer | Maximum records to return (1–10000) |

#### Modes

- **`forecast`** — Daily weather forecast for 1–16 days at any location
- **`historical`** — Past weather from 1940 onward for any date range
- **`airQuality`** — Air pollution data including PM2.5, PM10, NO2, ozone
- **`marine`** — Ocean wave data for coastal and offshore locations
- **`geocode`** — Translate city names to geographic coordinates

### Output

#### Forecast / Historical daily record

```json
{
  "recordType": "forecast",
  "dataGranularity": "daily",
  "date": "2026-05-25",
  "location": "Berlin, Germany",
  "latitude": 52.52,
  "longitude": 13.41,
  "timezone": "Europe/Berlin",
  "elevationMeters": 38.0,
  "temperatureMax": 22.5,
  "temperatureMin": 12.1,
  "temperatureUnit": "°C",
  "precipitation": 1.2,
  "weathercode": 2,
  "weatherDescription": "Partly cloudy",
  "windspeedMax": 18.3,
  "uvIndexMax": 5.2,
  "sunrise": "2026-05-25T05:02",
  "sunset": "2026-05-25T21:08",
  "scrapedAt": "2026-05-25T12:00:00+00:00"
}
````

#### Air quality record

```json
{
  "recordType": "airQuality",
  "time": "2026-05-25T00:00",
  "location": "Berlin, Germany",
  "latitude": 52.52,
  "longitude": 13.41,
  "pm25": 8.3,
  "pm10": 14.2,
  "co": 215.5,
  "no2": 12.1,
  "ozone": 62.8,
  "europeanAqiIndex": 28,
  "scrapedAt": "2026-05-25T12:00:00+00:00"
}
```

#### Marine record

```json
{
  "recordType": "marine",
  "date": "2026-05-25",
  "location": "North Sea",
  "latitude": 54.0,
  "longitude": 5.0,
  "waveHeightMax": 2.1,
  "waveDirectionDominant": 285.0,
  "wavePeriodMax": 8.5,
  "swellWaveHeightMax": 1.8,
  "scrapedAt": "2026-05-25T12:00:00+00:00"
}
```

#### Geocode record

```json
{
  "recordType": "geocode",
  "name": "Berlin",
  "country": "Germany",
  "countryCode": "DE",
  "latitude": 52.52437,
  "longitude": 13.41053,
  "elevation": 74.0,
  "timezone": "Europe/Berlin",
  "population": 3426354,
  "scrapedAt": "2026-05-25T12:00:00+00:00"
}
```

### Weather codes (WMO standard)

| Code | Description |
|---|---|
| 0 | Clear sky |
| 1–3 | Mainly clear / Partly cloudy / Overcast |
| 45–48 | Foggy |
| 51–55 | Drizzle (light to dense) |
| 61–67 | Rain (slight to freezing) |
| 71–77 | Snow |
| 80–82 | Rain showers |
| 85–86 | Snow showers |
| 95 | Thunderstorm |
| 96–99 | Thunderstorm with hail |

### Example use cases

- **Travel planning** — Get forecasts for upcoming trips to any city worldwide
- **Agriculture** — Historical precipitation and temperature trends for farming decisions
- **Environmental monitoring** — Track air quality trends for health and compliance
- **Shipping and logistics** — Wave and marine conditions for coastal routes
- **Research** — Long historical climate datasets going back to 1940

### FAQs

**Is an API key required?**
No. Open-Meteo is free for non-commercial use with no registration required.

**How far back does historical data go?**
Historical data is available from 1940 onward for most locations.

**How accurate is the forecast?**
Open-Meteo uses multiple global weather models (ECMWF, GFS, etc.) and is highly accurate, especially for the first 7 days.

**Can I get hourly data?**
Yes — set `hourlyVars` to include variables like `temperature_2m`, `windspeed_10m`, etc.

**Why is marine data not available for my location?**
Marine data requires coordinates in or near ocean/coastal areas. Inland coordinates will return an error.

**What timezones are supported?**
Any IANA timezone string (e.g. `Europe/Berlin`, `America/New_York`). Use `auto` to detect from coordinates automatically.

# Actor input Schema

## `mode` (type: `string`):

What weather data to fetch.

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

City name to look up automatically (e.g. 'Berlin', 'New York', 'Tokyo'). If provided, geocoding is performed automatically. Ignored if latitude/longitude are set.

## `latitude` (type: `number`):

Geographic latitude (-90 to 90). Overrides location field if provided.

## `longitude` (type: `number`):

Geographic longitude (-180 to 180). Overrides location field if provided.

## `timezone` (type: `string`):

Timezone for returned data. Use 'auto' to detect automatically from coordinates.

## `forecastDays` (type: `integer`):

Number of days to forecast (1–16). Defaults to 7.

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

Start date for historical data in YYYY-MM-DD format (e.g. '2023-01-01'). Required for historical mode.

## `endDate` (type: `string`):

End date for historical data in YYYY-MM-DD format (e.g. '2023-12-31'). Required for historical mode.

## `hourlyVars` (type: `array`):

Hourly weather variables to include (forecast and historical modes).

## `dailyVars` (type: `array`):

Daily weather summary variables to include.

## `cityName` (type: `string`):

City name to search for coordinates. Required for geocode mode.

## `country` (type: `string`):

Optional country to narrow geocode search (e.g. 'US', 'Germany').

## `climateModel` (type: `string`):

Climate model for projections. EC\_Earth3P\_HR is high-resolution. Use startDate/endDate to limit the range (default: 1990–2050).

## `maxItems` (type: `integer`):

Maximum number of records to return.

## Actor input object example

```json
{
  "mode": "forecast",
  "location": "Berlin",
  "timezone": "auto",
  "forecastDays": 7,
  "climateModel": "EC_Earth3P_HR",
  "maxItems": 100
}
```

# Actor output Schema

## `weatherData` (type: `string`):

Dataset containing all scraped weather records.

# 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 = {
    "mode": "forecast",
    "location": "Berlin",
    "timezone": "auto",
    "forecastDays": 7,
    "climateModel": "EC_Earth3P_HR",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/open-meteo-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 = {
    "mode": "forecast",
    "location": "Berlin",
    "timezone": "auto",
    "forecastDays": 7,
    "climateModel": "EC_Earth3P_HR",
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/open-meteo-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 '{
  "mode": "forecast",
  "location": "Berlin",
  "timezone": "auto",
  "forecastDays": 7,
  "climateModel": "EC_Earth3P_HR",
  "maxItems": 100
}' |
apify call crawlerbros/open-meteo-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Open-Meteo Weather Scraper",
        "description": "Scrape Open-Meteo, free open-source weather API with global forecasts, historical weather, air quality, marine conditions, and climate data. No API key required.",
        "version": "1.0",
        "x-build-id": "tenAOXhjPOShjsfh4"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~open-meteo-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-open-meteo-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/crawlerbros~open-meteo-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-open-meteo-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/crawlerbros~open-meteo-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-open-meteo-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "forecast",
                            "historical",
                            "airQuality",
                            "marine",
                            "climateData",
                            "geocode"
                        ],
                        "type": "string",
                        "description": "What weather data to fetch.",
                        "default": "forecast"
                    },
                    "location": {
                        "title": "Location (city name)",
                        "type": "string",
                        "description": "City name to look up automatically (e.g. 'Berlin', 'New York', 'Tokyo'). If provided, geocoding is performed automatically. Ignored if latitude/longitude are set."
                    },
                    "latitude": {
                        "title": "Latitude",
                        "minimum": -90,
                        "maximum": 90,
                        "type": "number",
                        "description": "Geographic latitude (-90 to 90). Overrides location field if provided."
                    },
                    "longitude": {
                        "title": "Longitude",
                        "minimum": -180,
                        "maximum": 180,
                        "type": "number",
                        "description": "Geographic longitude (-180 to 180). Overrides location field if provided."
                    },
                    "timezone": {
                        "title": "Timezone",
                        "enum": [
                            "auto",
                            "UTC",
                            "America/New_York",
                            "America/Chicago",
                            "America/Denver",
                            "America/Los_Angeles",
                            "America/Toronto",
                            "America/Vancouver",
                            "America/Sao_Paulo",
                            "America/Mexico_City",
                            "America/Buenos_Aires",
                            "Europe/London",
                            "Europe/Berlin",
                            "Europe/Paris",
                            "Europe/Madrid",
                            "Europe/Rome",
                            "Europe/Amsterdam",
                            "Europe/Stockholm",
                            "Europe/Warsaw",
                            "Europe/Istanbul",
                            "Europe/Moscow",
                            "Asia/Tokyo",
                            "Asia/Shanghai",
                            "Asia/Kolkata",
                            "Asia/Dubai",
                            "Asia/Singapore",
                            "Asia/Seoul",
                            "Asia/Bangkok",
                            "Asia/Jakarta",
                            "Asia/Karachi",
                            "Africa/Cairo",
                            "Africa/Lagos",
                            "Africa/Nairobi",
                            "Africa/Johannesburg",
                            "Australia/Sydney",
                            "Australia/Melbourne",
                            "Pacific/Auckland",
                            "Pacific/Honolulu"
                        ],
                        "type": "string",
                        "description": "Timezone for returned data. Use 'auto' to detect automatically from coordinates.",
                        "default": "auto"
                    },
                    "forecastDays": {
                        "title": "Forecast days (mode=forecast)",
                        "minimum": 1,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Number of days to forecast (1–16). Defaults to 7.",
                        "default": 7
                    },
                    "startDate": {
                        "title": "Start date (mode=historical)",
                        "type": "string",
                        "description": "Start date for historical data in YYYY-MM-DD format (e.g. '2023-01-01'). Required for historical mode."
                    },
                    "endDate": {
                        "title": "End date (mode=historical)",
                        "type": "string",
                        "description": "End date for historical data in YYYY-MM-DD format (e.g. '2023-12-31'). Required for historical mode."
                    },
                    "hourlyVars": {
                        "title": "Hourly variables",
                        "type": "array",
                        "description": "Hourly weather variables to include (forecast and historical modes).",
                        "items": {
                            "type": "string",
                            "enum": [
                                "temperature_2m",
                                "relativehumidity_2m",
                                "dewpoint_2m",
                                "apparent_temperature",
                                "precipitation",
                                "rain",
                                "snowfall",
                                "weathercode",
                                "pressure_msl",
                                "surface_pressure",
                                "cloudcover",
                                "visibility",
                                "windspeed_10m",
                                "winddirection_10m",
                                "windgusts_10m",
                                "uv_index",
                                "uv_index_clear_sky",
                                "is_day",
                                "shortwave_radiation",
                                "diffuse_radiation",
                                "direct_radiation"
                            ]
                        }
                    },
                    "dailyVars": {
                        "title": "Daily variables",
                        "type": "array",
                        "description": "Daily weather summary variables to include.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "temperature_2m_max",
                                "temperature_2m_min",
                                "apparent_temperature_max",
                                "apparent_temperature_min",
                                "precipitation_sum",
                                "rain_sum",
                                "snowfall_sum",
                                "precipitation_hours",
                                "weathercode",
                                "sunrise",
                                "sunset",
                                "windspeed_10m_max",
                                "windgusts_10m_max",
                                "winddirection_10m_dominant",
                                "shortwave_radiation_sum",
                                "et0_fao_evapotranspiration",
                                "uv_index_max",
                                "uv_index_clear_sky_max"
                            ]
                        }
                    },
                    "cityName": {
                        "title": "City name (mode=geocode)",
                        "type": "string",
                        "description": "City name to search for coordinates. Required for geocode mode."
                    },
                    "country": {
                        "title": "Country filter (mode=geocode)",
                        "type": "string",
                        "description": "Optional country to narrow geocode search (e.g. 'US', 'Germany')."
                    },
                    "climateModel": {
                        "title": "Climate model (mode=climateData)",
                        "enum": [
                            "EC_Earth3P_HR",
                            "CMCC_CM2_VHR4",
                            "MPI_ESM1_2_XR",
                            "NICAM16_8S"
                        ],
                        "type": "string",
                        "description": "Climate model for projections. EC_Earth3P_HR is high-resolution. Use startDate/endDate to limit the range (default: 1990–2050).",
                        "default": "EC_Earth3P_HR"
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of records to return.",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
