# Wayback Machine Search (`crawlerbros/wayback-machine-search`) Actor

Query Internet Archive's Wayback Machine for historical snapshots of any URL or domain. Filter by date, HTTP status, MIME type, and deduplicate. Optionally fetch the archived page text. Free public CDX API, no authentication.

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

## Pricing

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

## Wayback Machine Search

Query the Internet Archive's Wayback Machine for historical snapshots of any URL or domain — with flexible match modes, date and status filtering, content deduplication, and optional archived-text retrieval.

### What this actor does

The Internet Archive's Wayback Machine has captured trillions of web pages since 1996. This actor uses the Wayback Machine's free, public search API to enumerate every archived capture of a given URL or domain and return it as structured data — something the Wayback Machine's own browser UI can't easily do at scale.

You give the actor a URL and a match mode (exact URL, path prefix, full host, or entire domain) and it returns a row per archived snapshot with the capture timestamp, playback URL, HTTP status, MIME type, and content fingerprint. You can filter by date range, by HTTP status (e.g. find every archived 404 on a site), or by MIME type (e.g. enumerate every archived PDF). And because many pages are captured hundreds of times with identical content, the actor can deduplicate by content fingerprint so you get one row per *actual change*.

For historical-content research, the actor can optionally download each snapshot and extract the readable text of the archived page, giving you the raw material for diffs, longitudinal SEO studies, or training datasets.

### Key features

- Four URL match modes: `exact`, `prefix`, `host`, `domain`
- Date-range filtering (`YYYY`, `YYYYMM`, or `YYYYMMDD` precision)
- HTTP-status filtering — find every archived 200, 301, 404, etc.
- MIME-type filtering — restrict to `text/html`, `application/pdf`, images, and so on
- Content deduplication by fingerprint, or time-bucketing (one snapshot per month / day / hour)
- Optional archived-text retrieval — pull the readable text of selected snapshots
- No API key, no login, no proxy — the Wayback Machine's public search API is free and open
- Zero-null output — empty fields are omitted from each record

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `url` | string | — | **Required.** The URL or domain to look up (e.g. `apify.com`, `https://nytimes.com/2024/01/15/story.html`). |
| `matchType` | enum | `exact` | How to match the URL: `exact` (this URL only), `prefix` (URL and anything beneath it), `host` (same hostname only), `domain` (host plus all subdomains). |
| `dateFrom` | string | — | Earliest snapshot date, inclusive. Accepts `YYYY`, `YYYYMM`, or `YYYYMMDD`. |
| `dateTo` | string | — | Latest snapshot date, inclusive. Same formats. |
| `statusFilter` | string | — | Keep only snapshots with this HTTP status (e.g. `200`, `404`). |
| `mimeFilter` | string | — | Keep only snapshots with this MIME type (e.g. `text/html`, `application/pdf`). |
| `collapseBy` | enum | `digest` | `digest` (drop adjacent duplicates by content fingerprint), `monthly`, `daily`, `hourly`, or `none`. |
| `maxResults` | integer | `500` | Maximum snapshot records to return (1-10000). |
| `includeContent` | boolean | `false` | If `true`, download each snapshot and extract its readable text. |
| `maxContentFetch` | integer | `10` | When `includeContent` is on, cap the number of snapshots to download (0-500). |

**Example input — every HTML page ever archived under a domain, deduplicated**

```json
{
  "url": "example.com",
  "matchType": "domain",
  "mimeFilter": "text/html",
  "statusFilter": "200",
  "collapseBy": "digest",
  "maxResults": 2000
}
````

**Example input — track a single page through 2024 with monthly granularity**

```json
{
  "url": "https://news.ycombinator.com/",
  "matchType": "exact",
  "dateFrom": "2024",
  "dateTo": "2024",
  "collapseBy": "monthly"
}
```

**Example input — archive the readable text of a page across changes**

```json
{
  "url": "apify.com",
  "matchType": "exact",
  "includeContent": true,
  "maxContentFetch": 20,
  "collapseBy": "digest"
}
```

### Output

One record per snapshot:

```json
{
  "originalUrl": "https://apify.com/",
  "timestamp": "20240115123045",
  "archiveDate": "2024-01-15T12:30:45+00:00",
  "archiveUrl": "https://web.archive.org/web/20240115123045/https://apify.com/",
  "mimeType": "text/html",
  "statusCode": 200,
  "contentDigest": "SHA1:ABC123...",
  "contentLength": 45678,
  "content": "Apify is the platform where developers build, deploy, and publish...",
  "scrapedAt": "2026-04-24T12:00:00+00:00"
}
```

**Field descriptions**

- **`originalUrl`** — the URL that was archived
- **`timestamp`** — the Wayback Machine's raw capture timestamp (`YYYYMMDDHHMMSS`)
- **`archiveDate`** — ISO-8601 UTC rendering of `timestamp` for convenience
- **`archiveUrl`** — direct playback URL in the Wayback Machine viewer
- **`mimeType`** — MIME type reported when the snapshot was captured
- **`statusCode`** — HTTP status code at capture time
- **`contentDigest`** — content fingerprint (used for deduplication)
- **`contentLength`** — response body size in bytes
- **`content`** — extracted readable page text (only when `includeContent=true` and fetch succeeded; capped at 500 KB)
- **`scrapedAt`** — ISO timestamp of this run

If no snapshots match, a single diagnostic record is emitted with `type: "wayback_search_error"` and a `reason` of `no_snapshots`, `cdx_fetch_failed`, or `invalid_input`.

### Use cases

- **Content audit / SEO** — recover every historical version of a site's pages to diff copy, titles, or schema changes over time
- **Broken-link recovery** — enumerate every archived 404 on your domain so you can redirect or restore the missing URLs
- **Competitive intelligence** — see how a competitor's landing page, pricing, or product catalogue has evolved month by month
- **Journalism and due diligence** — reconstruct a web page, press release, or statement as it existed on a specific date
- **Training-data curation** — pull the text of older captures of reference sites for ML datasets

### FAQ

**Do I need a Wayback Machine account or API key?**
No. The Wayback Machine's search API is a free public endpoint. The actor uses no credentials.

**Does it use proxies?**
No. The search API works fine from Apify's datacenter IPs.

**What's the difference between `matchType=host` and `matchType=domain`?**
`host` matches one exact hostname — `www.example.com` won't return `blog.example.com`. `domain` matches that host *and* all of its subdomains (`blog.example.com`, `api.example.com`, and so on).

**Why is `collapseBy=digest` the default?**
Most pages are captured many times with identical content. Collapsing by fingerprint drops those duplicates so you get one record per *actual change* rather than hundreds of identical captures.

**When should I use the time-bucket collapses (`monthly` / `daily` / `hourly`)?**
Use these when you want an evenly-spaced sample over time — one snapshot per month is great for a long-term trend, one per day for detailed change tracking.

**Why does my record sometimes lack a `content` field?**
Either `includeContent` was off, `maxContentFetch` was exhausted, or the archived page replayed with a non-200 status. The actor never emits an empty `content` field.

**What are the rate limits?**
The Wayback Machine's search API doesn't publish a hard limit. The actor retries transient 429 / 5xx responses and paces archived-page downloads with a small polite delay.

**Can I search by keyword or full-text?**
No. The Wayback Machine's public search API works by URL, not full-text. Use the `includeContent` option to retrieve page text and then filter downstream.

### Known limitations

- **URL-based search only.** You can't query by keyword — only by URL, host, or domain.
- **Archive coverage is not complete.** Not every page on the internet is captured, and capture frequency varies wildly by site popularity.
- **`maxResults` is capped at 10,000.** For very large domains, narrow the scope with a date range or use more specific match types.
- **Archived text extraction** captures readable text only — not images, interactive widgets, or JavaScript-rendered content that wasn't present in the stored HTML.
- **Content is capped at 500 KB** per archived page to keep dataset rows manageable; anything longer is truncated.
- **Playback occasionally redirects.** When the Wayback Machine redirects a playback URL to a different snapshot, the `statusCode` field reflects the original capture status, not the redirect chain.

# Actor input Schema

## `url` (type: `string`):

The URL or domain to search for historical snapshots. Examples: 'apify.com', 'https://example.com/blog', 'nytimes.com/2024/01/15/story.html'. Combine with 'Match type' to broaden or narrow the search.

## `matchType` (type: `string`):

How the input URL is matched against archived snapshots. 'exact' = only the exact URL. 'prefix' = the URL and anything beneath it (e.g., example.com/blog/\*). 'host' = all snapshots on the same host. 'domain' = the host and all its subdomains.

## `dateFrom` (type: `string`):

Earliest snapshot date (inclusive). Accepts YYYY, YYYYMM, or YYYYMMDD (e.g., '2020', '202001', '20200115'). Leave blank for no lower bound.

## `dateTo` (type: `string`):

Latest snapshot date (inclusive). Accepts YYYY, YYYYMM, or YYYYMMDD (e.g., '2024', '202412', '20241231'). Leave blank for no upper bound.

## `statusFilter` (type: `string`):

Only return snapshots matching this HTTP status code (e.g., '200' for successful fetches, '404' for not-found, '301' for redirects). Leave blank to include all status codes.

## `mimeFilter` (type: `string`):

Only return snapshots matching this MIME type (e.g., 'text/html', 'application/pdf', 'image/png'). Leave blank to include all MIME types.

## `collapseBy` (type: `string`):

Deduplicate adjacent snapshots. 'digest' drops duplicates with identical content fingerprint (best for unchanged pages). 'monthly' / 'daily' / 'hourly' keep one snapshot per time bucket. 'none' returns every raw snapshot.

## `maxResults` (type: `integer`):

Maximum number of snapshot records to return (1-10000).

## `includeContent` (type: `boolean`):

When enabled, downloads the archived HTML for the first N snapshots (see 'Max content fetch') and extracts the readable text. Adds latency and bandwidth but yields searchable content.

## `maxContentFetch` (type: `integer`):

Upper bound on how many archived pages to download when 'Fetch archived page text' is enabled. Each fetch is rate-limited to be polite to the Wayback Machine.

## Actor input object example

```json
{
  "url": "apify.com",
  "matchType": "exact",
  "collapseBy": "digest",
  "maxResults": 500,
  "includeContent": false,
  "maxContentFetch": 10
}
```

# 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 = {
    "url": "apify.com",
    "maxResults": 500
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/wayback-machine-search").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 = {
    "url": "apify.com",
    "maxResults": 500,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/wayback-machine-search").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 '{
  "url": "apify.com",
  "maxResults": 500
}' |
apify call crawlerbros/wayback-machine-search --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Wayback Machine Search",
        "description": "Query Internet Archive's Wayback Machine for historical snapshots of any URL or domain. Filter by date, HTTP status, MIME type, and deduplicate. Optionally fetch the archived page text. Free public CDX API, no authentication.",
        "version": "1.0",
        "x-build-id": "h9mXCHbzYwfM9qkcl"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~wayback-machine-search/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-wayback-machine-search",
                "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~wayback-machine-search/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-wayback-machine-search",
                "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~wayback-machine-search/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-wayback-machine-search",
                "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": [
                    "url"
                ],
                "properties": {
                    "url": {
                        "title": "URL or domain",
                        "type": "string",
                        "description": "The URL or domain to search for historical snapshots. Examples: 'apify.com', 'https://example.com/blog', 'nytimes.com/2024/01/15/story.html'. Combine with 'Match type' to broaden or narrow the search."
                    },
                    "matchType": {
                        "title": "Match type",
                        "enum": [
                            "exact",
                            "prefix",
                            "host",
                            "domain"
                        ],
                        "type": "string",
                        "description": "How the input URL is matched against archived snapshots. 'exact' = only the exact URL. 'prefix' = the URL and anything beneath it (e.g., example.com/blog/*). 'host' = all snapshots on the same host. 'domain' = the host and all its subdomains.",
                        "default": "exact"
                    },
                    "dateFrom": {
                        "title": "From date",
                        "type": "string",
                        "description": "Earliest snapshot date (inclusive). Accepts YYYY, YYYYMM, or YYYYMMDD (e.g., '2020', '202001', '20200115'). Leave blank for no lower bound."
                    },
                    "dateTo": {
                        "title": "To date",
                        "type": "string",
                        "description": "Latest snapshot date (inclusive). Accepts YYYY, YYYYMM, or YYYYMMDD (e.g., '2024', '202412', '20241231'). Leave blank for no upper bound."
                    },
                    "statusFilter": {
                        "title": "HTTP status filter",
                        "type": "string",
                        "description": "Only return snapshots matching this HTTP status code (e.g., '200' for successful fetches, '404' for not-found, '301' for redirects). Leave blank to include all status codes."
                    },
                    "mimeFilter": {
                        "title": "MIME type filter",
                        "type": "string",
                        "description": "Only return snapshots matching this MIME type (e.g., 'text/html', 'application/pdf', 'image/png'). Leave blank to include all MIME types."
                    },
                    "collapseBy": {
                        "title": "Collapse (deduplicate) by",
                        "enum": [
                            "none",
                            "digest",
                            "monthly",
                            "daily",
                            "hourly"
                        ],
                        "type": "string",
                        "description": "Deduplicate adjacent snapshots. 'digest' drops duplicates with identical content fingerprint (best for unchanged pages). 'monthly' / 'daily' / 'hourly' keep one snapshot per time bucket. 'none' returns every raw snapshot.",
                        "default": "digest"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of snapshot records to return (1-10000).",
                        "default": 500
                    },
                    "includeContent": {
                        "title": "Fetch archived page text",
                        "type": "boolean",
                        "description": "When enabled, downloads the archived HTML for the first N snapshots (see 'Max content fetch') and extracts the readable text. Adds latency and bandwidth but yields searchable content.",
                        "default": false
                    },
                    "maxContentFetch": {
                        "title": "Max content fetches",
                        "minimum": 0,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Upper bound on how many archived pages to download when 'Fetch archived page text' is enabled. Each fetch is rate-limited to be polite to the Wayback Machine.",
                        "default": 10
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
