# OGC EDR Extractor (`datamule/ogc-edr-extractor`) Actor

Point at ANY OGC API - EDR (Environmental Data Retrieval) service — Met Office, FMI, pygeoapi. List collections, then query environmental data by position, area, radius, trajectory, or cube. Flattens CoverageJSON / GeoJSON to rows (parameter, value, unit, lon/lat, time). Pay per record.

- **URL**: https://apify.com/datamule/ogc-edr-extractor.md
- **Developed by:** [Datamule](https://apify.com/datamule) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.35 / 1,000 record extracteds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## OGC EDR Extractor

A **generic "point at any OGC API - EDR service" scraper**. [OGC API -
EDR](https://ogcapi.ogc.org/edr/) (Environmental Data Retrieval) is the
OGC-blessed JSON standard for **querying environmental data by geometry** — ask a
server for the value(s) at a **position**, within an **area** / **radius** /
**cube**, along a **trajectory** / **corridor**, or at named **locations**, over
a time window, for a set of parameters. It is spoken by the **UK Met Office**,
**national meteorological services** (e.g. the Finnish Meteorological Institute,
ECMWF feeds), and the **pygeoapi** / **ldproxy** server families.

Give this actor an EDR service root, discover its collections, then run a query —
and it flattens the **CoverageJSON** or **GeoJSON** response into clean, flat
dataset rows (parameter, value, unit, longitude/latitude, time) plus a lossless
`raw`.

One actor, every OGC API - EDR service — no per-instance scraper needed. It is
the EDR sibling of the companion **OGC API Features Extractor** and **STAC
Catalog Extractor**.

### What it does

- **Discover collections** — leave the collection id empty (or turn on **List
  collections only**) and it reads `{baseUrl}/collections` and returns one row
  per EDR collection: id, title, description, the supported **query types**,
  **parameter names**, spatial + temporal + vertical extent, and CRS. Read this
  first to pick a real collection id and a query type it supports.
- **Query environmental data** — set a **collection id** + a **query type**
  (position / area / radius / trajectory / corridor / cube / locations) + the
  query geometry (**coords** as WKT, or a **bounding box** for cube) + an optional
  **date/time** window and **parameter** filter, and it runs the EDR query and
  flattens the response:
  - **CoverageJSON** (the EDR-native format) — a `Coverage` or a
    `CoverageCollection`. The domain axes (x / y / z / t) are crossed against
    every parameter's data array to emit **one row per (position × time ×
    parameter)** observation, each with its value + unit.
  - **GeoJSON** — `locations` / `area` queries often return a FeatureCollection;
    one row per feature with geometry, lon/lat and properties.
- **Normalized + raw** — stable columns (`parameter`, `value`, `unit`,
  `longitude`, `latitude`, `z`, `time`) while the untouched response object is
  preserved in `raw`, so nothing is lost even though every service and collection
  exposes different parameters.

### Example inputs

Discover what a service exposes (start here — no auth):

```json
{ "baseUrl": "https://demo.pygeoapi.io/master", "listCollectionsOnly": true }
````

A **position** query — the full sea-surface-temperature time series at a point in
the North Atlantic (pygeoapi ICOADS, no auth):

```json
{ "baseUrl": "https://demo.pygeoapi.io/master", "collectionId": "icoads-sst", "queryType": "position", "coords": "POINT(-30 40)", "parameterNames": ["SST"] }
```

A **cube** query — a gridded box + time window:

```json
{ "baseUrl": "https://demo.pygeoapi.io/master", "collectionId": "icoads-sst", "queryType": "cube", "bbox": [-35, 38, -25, 44], "parameterNames": ["SST"], "maxRecords": 200 }
```

A **locations** query on the UK Met Office EDR labs service (returns GeoJSON):

```json
{ "baseUrl": "https://labs.metoffice.gov.uk/edr", "collectionId": "copernicus_dem", "queryType": "locations" }
```

Discover the 47 collections (incl. ECMWF) on the Finnish Meteorological Institute:

```json
{ "baseUrl": "https://opendata.fmi.fi/edr", "listCollectionsOnly": true }
```

### Input reference

- `baseUrl` **(required)** — the EDR service root (not `/collections`).
- `collectionId` — the collection to query; empty ⇒ discovery mode.
- `listCollectionsOnly` — force discovery mode (list collections, query nothing).
- `queryType` — `position` / `area` / `radius` / `trajectory` / `corridor` /
  `cube` / `locations` / `items` (only the types a collection advertises are
  valid — the actor validates and tells you what's supported).
- `coords` — the query geometry as WKT in WGS84 lon/lat (`POINT(...)`,
  `POLYGON((...))`, `LINESTRING(...)`).
- `bbox` — `[west, south, east, north]` for the cube query.
- `datetime` — RFC 3339 instant or range; open ranges with `..`.
- `parameterNames` — the parameter(s) to retrieve; empty ⇒ all.
- `z` — vertical level for collections with a vertical dimension.
- `locationId` — a specific named location for a `locations` query.
- `within` / `withinUnits` — radius distance + units for a `radius` query.
- `maxRecords` — total record cap (default 1000).
- `queryParams` — arbitrary extra query params passthrough.
- `bearerToken` / `extraHeaders` — optional auth for key-gated services.

### Authentication

**None required** for the public services (pygeoapi, Met Office labs, FMI). For
key-gated services supply a **Bearer token** and/or **Extra request headers** —
both optional, never required, and the token is never logged.

### Output

One dataset item per record:

- **Discovery mode** (`_mode: "collection"`) — `collectionId`, `title`,
  `queryTypes`, `parameterNames`, `spatialExtent`, `temporalExtent`, `crs`, …
- **Query mode** — one observation per (position × time × parameter) for
  CoverageJSON (`_mode: "observation"`: `parameter`, `value`, `unit`,
  `longitude`, `latitude`, `z`, `time`, `domainType`), or one feature per GeoJSON
  feature (`_mode: "feature"`: `geometryType`, `featureId`, `properties`,
  lon/lat).
- `raw` — the complete, untouched source object.

A query that returns no data (HTTP 204 / empty) returns **0 records, not an
error**. Pointed at a non-EDR host (a `/collections` with no `data_queries`) it
fails fast with a clear message.

### Pricing

**Pay per record** — you're charged one `record` event per row returned (one per
collection in discovery mode, one per observation/feature in query mode). A query
that returns nothing costs nothing.

### Notes

- Speaks OGC API - EDR: handles the `data_queries` discovery block, CoverageJSON
  (`Coverage` + `CoverageCollection`, both explicit-`values` and compact
  `{start, stop, num}` axes, row-major NdArray decode) and GeoJSON responses.
- Not affiliated with or endorsed by the OGC or any target service. Respect each
  provider's terms and any per-dataset licensing.

# Actor input Schema

## `baseUrl` (type: `string`):

The root URL of ANY OGC API - EDR (Environmental Data Retrieval) service. Examples: https://demo.pygeoapi.io/master (pygeoapi reference server), https://labs.metoffice.gov.uk/edr (UK Met Office, 26 collections), https://opendata.fmi.fi/edr (Finnish Meteorological Institute, 47 collections incl. ECMWF). Do NOT include /collections — just the EDR service root.

## `collectionId` (type: `string`):

The collection to query, e.g. icoads-sst (pygeoapi) or global\_pop\_density (Met Office). Leave EMPTY to run in discovery mode — list every EDR collection the service exposes with its supported query types, parameters and spatial/temporal extent. Read the discovery output first to pick a real collection id + a query type it supports.

## `listCollectionsOnly` (type: `boolean`):

When on, the actor only reads {baseUrl}/collections and returns one row per available EDR collection (id, title, supported queryTypes, parameterNames, spatial/temporal extent, CRS) — it does NOT run any query. Use this to discover what a service exposes, then set a Collection id + Query type to extract data.

## `queryType` (type: `string`):

The EDR query family to run against the chosen collection. Only the types a collection advertises in its data\_queries are valid (the actor validates this and tells you what's supported). position = value(s) at a point; area = within a polygon; radius = within a circle; trajectory/corridor = along a path; cube = within a bounding box + time; locations = named locations (often returns GeoJSON); items = the collection's item index.

## `coords` (type: `string`):

The query geometry as a Well-Known-Text (WKT) string in WGS84 lon/lat. position: POINT(-30 40). area: POLYGON((-40 30,-20 30,-20 50,-40 50,-40 30)). trajectory: LINESTRING(-30 40,-25 42,-20 45). Required for position/area/radius/trajectory/corridor. Ignored for cube (use Bounding box) and for a specific locations query (use Location id).

## `bbox` (type: `array`):

Bounding box for a cube query as \[west, south, east, north] in WGS84 decimal degrees, e.g. \[-35, 38, -25, 44]. Used by the cube query type; leave empty for other query types.

## `datetime` (type: `string`):

Temporal filter in RFC 3339. A single instant (2000-06-16T06:00:00Z), a closed range (2000-06-01T00:00:00Z/2000-06-30T23:59:59Z), or an open range with ".." (2000-06-01T00:00:00Z/.. or ../2000-06-30T00:00:00Z). Must fall within the collection's temporal extent (visible in discovery mode). Leave empty to let the server return its full time series for the location.

## `parameterNames` (type: `array`):

The parameter(s) to retrieve, e.g. SST, AIRT (visible per-collection in discovery mode under parameterNames). Sent as the EDR parameter-name filter. Leave empty to return every parameter the collection offers.

## `z` (type: `string`):

Optional vertical coordinate / level for collections with a vertical dimension (pressure level, depth, height), e.g. 850 or a range 100/500. Leave empty for surface/2D collections.

## `locationId` (type: `string`):

For a locations query: the id of a specific named location to retrieve (GET .../locations/{locationId}). Leave empty with queryType=locations to list every named location the collection offers.

## `within` (type: `string`):

For a radius query: the radius distance from the point, e.g. 100. Pair with Radius units.

## `withinUnits` (type: `string`):

For a radius query: the units of the radius distance, e.g. km or mi (must be a unit the collection advertises).

## `maxRecords` (type: `integer`):

Maximum total number of records to emit (observations in query mode, collections in discovery mode). Each returned record is one billable event. Default 25.

## `queryParams` (type: `object`):

Arbitrary extra query-string parameters appended to the query request, as a JSON object — a generic passthrough for provider-specific keys. The reserved keys coords/bbox/datetime/z/parameter-name/crs/f/limit are managed by the actor and ignored here. Leave empty for none.

## `bearerToken` (type: `string`):

Optional OAuth2 bearer token for key-gated EDR services. Sent as Authorization: Bearer \*\*\*. NOT required for public services (pygeoapi, Met Office labs, FMI) — leave empty. Never logged.

## `extraHeaders` (type: `object`):

Optional extra HTTP headers to send with every request, as a JSON object, e.g. {"apikey": "..."} for a service that takes an API key in a header. Leave empty for public services.

## Actor input object example

```json
{
  "baseUrl": "https://demo.pygeoapi.io/master",
  "listCollectionsOnly": false,
  "queryType": "position",
  "coords": "POINT(-30 40)",
  "maxRecords": 25
}
```

# 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 = {
    "baseUrl": "https://demo.pygeoapi.io/master",
    "coords": "POINT(-30 40)",
    "maxRecords": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("datamule/ogc-edr-extractor").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 = {
    "baseUrl": "https://demo.pygeoapi.io/master",
    "coords": "POINT(-30 40)",
    "maxRecords": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("datamule/ogc-edr-extractor").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 '{
  "baseUrl": "https://demo.pygeoapi.io/master",
  "coords": "POINT(-30 40)",
  "maxRecords": 25
}' |
apify call datamule/ogc-edr-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=datamule/ogc-edr-extractor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "OGC EDR Extractor",
        "description": "Point at ANY OGC API - EDR (Environmental Data Retrieval) service — Met Office, FMI, pygeoapi. List collections, then query environmental data by position, area, radius, trajectory, or cube. Flattens CoverageJSON / GeoJSON to rows (parameter, value, unit, lon/lat, time). Pay per record.",
        "version": "0.1",
        "x-build-id": "z7gKT1aWbNuT28dDz"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datamule~ogc-edr-extractor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datamule-ogc-edr-extractor",
                "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/datamule~ogc-edr-extractor/runs": {
            "post": {
                "operationId": "runs-sync-datamule-ogc-edr-extractor",
                "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/datamule~ogc-edr-extractor/run-sync": {
            "post": {
                "operationId": "run-sync-datamule-ogc-edr-extractor",
                "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": [
                    "baseUrl"
                ],
                "properties": {
                    "baseUrl": {
                        "title": "EDR service root URL",
                        "type": "string",
                        "description": "The root URL of ANY OGC API - EDR (Environmental Data Retrieval) service. Examples: https://demo.pygeoapi.io/master (pygeoapi reference server), https://labs.metoffice.gov.uk/edr (UK Met Office, 26 collections), https://opendata.fmi.fi/edr (Finnish Meteorological Institute, 47 collections incl. ECMWF). Do NOT include /collections — just the EDR service root."
                    },
                    "collectionId": {
                        "title": "Collection id",
                        "type": "string",
                        "description": "The collection to query, e.g. icoads-sst (pygeoapi) or global_pop_density (Met Office). Leave EMPTY to run in discovery mode — list every EDR collection the service exposes with its supported query types, parameters and spatial/temporal extent. Read the discovery output first to pick a real collection id + a query type it supports."
                    },
                    "listCollectionsOnly": {
                        "title": "List collections only (discovery)",
                        "type": "boolean",
                        "description": "When on, the actor only reads {baseUrl}/collections and returns one row per available EDR collection (id, title, supported queryTypes, parameterNames, spatial/temporal extent, CRS) — it does NOT run any query. Use this to discover what a service exposes, then set a Collection id + Query type to extract data.",
                        "default": false
                    },
                    "queryType": {
                        "title": "Query type",
                        "enum": [
                            "position",
                            "area",
                            "radius",
                            "trajectory",
                            "corridor",
                            "cube",
                            "locations",
                            "items",
                            "instances"
                        ],
                        "type": "string",
                        "description": "The EDR query family to run against the chosen collection. Only the types a collection advertises in its data_queries are valid (the actor validates this and tells you what's supported). position = value(s) at a point; area = within a polygon; radius = within a circle; trajectory/corridor = along a path; cube = within a bounding box + time; locations = named locations (often returns GeoJSON); items = the collection's item index.",
                        "default": "position"
                    },
                    "coords": {
                        "title": "Coordinates (WKT)",
                        "type": "string",
                        "description": "The query geometry as a Well-Known-Text (WKT) string in WGS84 lon/lat. position: POINT(-30 40). area: POLYGON((-40 30,-20 30,-20 50,-40 50,-40 30)). trajectory: LINESTRING(-30 40,-25 42,-20 45). Required for position/area/radius/trajectory/corridor. Ignored for cube (use Bounding box) and for a specific locations query (use Location id)."
                    },
                    "bbox": {
                        "title": "Bounding box (cube)",
                        "type": "array",
                        "description": "Bounding box for a cube query as [west, south, east, north] in WGS84 decimal degrees, e.g. [-35, 38, -25, 44]. Used by the cube query type; leave empty for other query types."
                    },
                    "datetime": {
                        "title": "Date/time window",
                        "type": "string",
                        "description": "Temporal filter in RFC 3339. A single instant (2000-06-16T06:00:00Z), a closed range (2000-06-01T00:00:00Z/2000-06-30T23:59:59Z), or an open range with \"..\" (2000-06-01T00:00:00Z/.. or ../2000-06-30T00:00:00Z). Must fall within the collection's temporal extent (visible in discovery mode). Leave empty to let the server return its full time series for the location."
                    },
                    "parameterNames": {
                        "title": "Parameter names",
                        "type": "array",
                        "description": "The parameter(s) to retrieve, e.g. SST, AIRT (visible per-collection in discovery mode under parameterNames). Sent as the EDR parameter-name filter. Leave empty to return every parameter the collection offers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "z": {
                        "title": "Vertical level (z)",
                        "type": "string",
                        "description": "Optional vertical coordinate / level for collections with a vertical dimension (pressure level, depth, height), e.g. 850 or a range 100/500. Leave empty for surface/2D collections."
                    },
                    "locationId": {
                        "title": "Location id (locations query)",
                        "type": "string",
                        "description": "For a locations query: the id of a specific named location to retrieve (GET .../locations/{locationId}). Leave empty with queryType=locations to list every named location the collection offers."
                    },
                    "within": {
                        "title": "Radius distance (radius query)",
                        "type": "string",
                        "description": "For a radius query: the radius distance from the point, e.g. 100. Pair with Radius units."
                    },
                    "withinUnits": {
                        "title": "Radius units (radius query)",
                        "type": "string",
                        "description": "For a radius query: the units of the radius distance, e.g. km or mi (must be a unit the collection advertises)."
                    },
                    "maxRecords": {
                        "title": "Max records (total)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum total number of records to emit (observations in query mode, collections in discovery mode). Each returned record is one billable event. Default 25.",
                        "default": 25
                    },
                    "queryParams": {
                        "title": "Extra query parameters",
                        "type": "object",
                        "description": "Arbitrary extra query-string parameters appended to the query request, as a JSON object — a generic passthrough for provider-specific keys. The reserved keys coords/bbox/datetime/z/parameter-name/crs/f/limit are managed by the actor and ignored here. Leave empty for none."
                    },
                    "bearerToken": {
                        "title": "Bearer token (optional)",
                        "type": "string",
                        "description": "Optional OAuth2 bearer token for key-gated EDR services. Sent as Authorization: Bearer ***. NOT required for public services (pygeoapi, Met Office labs, FMI) — leave empty. Never logged."
                    },
                    "extraHeaders": {
                        "title": "Extra request headers",
                        "type": "object",
                        "description": "Optional extra HTTP headers to send with every request, as a JSON object, e.g. {\"apikey\": \"...\"} for a service that takes an API key in a header. Leave empty for public services."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
