# Google Patents Scraper (`automation-lab/google-patents-scraper`) Actor

Export Google Patents search results and patent detail data for IP research, prior-art review, competitor monitoring, and patent landscapes.

- **URL**: https://apify.com/automation-lab/google-patents-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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.md):

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

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

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

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

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

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

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

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

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


# README

## Google Patents Scraper

Export Google Patents search results, patent URLs, abstracts, claims, assignees, inventors, classifications, citations, PDFs, and priority dates into a structured Apify dataset.

Use it to turn Google Patents searches into repeatable patent landscape exports for prior-art research, competitor monitoring, IP due diligence, and R&D intelligence workflows.

### What does Google Patents Scraper do?

Google Patents Scraper searches the public Google Patents index and saves one dataset item per patent publication.

It can run broad patent searches, extract specific publication numbers, or enrich Google Patents URLs with detail-page fields.

The actor is HTTP-first and uses the public Google Patents pages and XHR endpoint.

No Google account, API key, or browser automation is required for the normal workflow.

### Who is it for?

- ⚖️ IP attorneys building prior-art review lists.
- 🔬 Patent researchers exporting citation and family context.
- 🏭 R&D teams monitoring competitor patent activity.
- 🎓 University tech-transfer teams tracking licensing opportunities.
- 📊 Competitive-intelligence analysts building patent landscape dashboards.
- 🤖 Developers who need a simple Google Patents API-like export.

### Why use this scraper?

Manual Google Patents research is useful but hard to operationalize.

This actor makes it repeatable.

You can schedule the same query, keep a consistent dataset schema, connect results to dashboards, and compare new exports over time.

It is designed for practical patent workflows rather than one-off page screenshots.

### What data can it extract?

The default search mode extracts bibliographic and search-result fields.

Detail mode adds richer fields from each public patent page.

| Field | Description |
| --- | --- |
| `query` | Search query that produced the result |
| `rank` | Rank in Google Patents search results |
| `title` | Patent title |
| `snippet` | Search result snippet |
| `publicationNumber` | Publication number such as `US20230000001A1` |
| `resultUrl` | Google Patents detail page URL |
| `pdfUrl` | Public PDF URL when available |
| `thumbnailUrl` | Thumbnail or figure URL when available |
| `inventor` | Inventor names from Google Patents |
| `assignee` | Assignee names from Google Patents |
| `priorityDate` | Priority date |
| `filingDate` | Filing date |
| `publicationDate` | Publication date |
| `grantDate` | Grant date when available |
| `language` | Result language |
| `countryStatus` | Country/status signals from family metadata |
| `abstract` | Detail-page abstract when enabled |
| `claims` | Claim text snippets when enabled |
| `classifications` | Classification/meta subject values when enabled |
| `citations` | Citation publication numbers when enabled |
| `sourceType` | `search` or `patent` |
| `scrapedAt` | Extraction timestamp |

### How much does it cost to scrape Google Patents?

The actor uses pay-per-event pricing.

There is a small start event and a per-patent result event.

Current calibrated prices are:

- Start event: `$0.005` per run.
- Patent result event: tiered, with Bronze at `$0.000048409` per saved patent.

Higher-volume tiers receive automatic per-item discounts on Apify.

### How to search Google Patents

Add one or more strings to `queries`.

The actor passes query syntax through to Google Patents.

Examples:

- `battery assignee:tesla`
- `"solid state battery"`
- `inventor:"John Smith"`
- `solar cell before:priority:2022`
- `(machine learning) assignee:google`

### How to extract specific patents

Use `publicationNumbers` when you already know the target publications.

Examples:

- `US20230000001A1`
- `EP1234567A2`
- `CN113650574B`

You can also paste Google Patents URLs into `patentUrls`.

### Input fields

| Input | Type | Description |
| --- | --- | --- |
| `queries` | array of strings | Google Patents search queries |
| `patentUrls` | array of URLs | Direct Google Patents pages |
| `publicationNumbers` | array of strings | Direct publication numbers |
| `maxItems` | integer | Maximum records to save |
| `includeDetails` | boolean | Fetch abstracts, claims, classifications, and citations |
| `language` | string | Detail-page language path, usually `en` |
| `requestDelayMs` | integer | Delay between requests |
| `proxyConfiguration` | object | Optional Apify Proxy settings for reliable Google Patents access |

### Recommended input

```json
{
  "queries": ["battery assignee:tesla"],
  "maxItems": 100,
  "includeDetails": false,
  "language": "en",
  "requestDelayMs": 250,
  "proxyConfiguration": { "useApifyProxy": true }
}
````

### Deep research input

```json
{
  "queries": ["\"solid state battery\" before:priority:2023"],
  "maxItems": 50,
  "includeDetails": true,
  "language": "en",
  "requestDelayMs": 500,
  "proxyConfiguration": { "useApifyProxy": true }
}
```

### Output example

```json
{
  "query": "battery assignee:tesla",
  "rank": 1,
  "title": "Battery pack thermal management system",
  "publicationNumber": "US20230000001A1",
  "assignee": "Tesla Inc",
  "inventor": "Example Inventor",
  "priorityDate": "2021-01-01",
  "filingDate": "2022-01-01",
  "publicationDate": "2023-01-05",
  "resultUrl": "https://patents.google.com/patent/US20230000001A1/en",
  "sourceType": "search",
  "scrapedAt": "2026-06-30T00:00:00.000Z"
}
```

### Tips for better patent exports

- Keep `includeDetails` disabled for fast watchlist searches.
- Enable `includeDetails` when you need abstract, claims, classifications, or citation snippets.
- Use Google Patents operators directly in `queries`.
- Start with `maxItems` around 25 or 100 before running large landscapes.
- Increase `requestDelayMs` for high-volume detail-mode runs.

### Integrations

Use the dataset output in:

- 📈 patent landscape dashboards
- 🧾 prior-art review spreadsheets
- 🔔 scheduled competitor monitoring alerts
- 🧠 R\&D intelligence pipelines
- 🗃️ internal patent knowledge bases
- ⚙️ enrichment workflows with other Apify actors

### API usage with Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/google-patents-scraper').call({
  queries: ['battery assignee:tesla'],
  maxItems: 100,
  includeDetails: false
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items[0]);
```

### API usage with Python

```python
from apify_client import ApifyClient

client = ApifyClient('MY-APIFY-TOKEN')
run = client.actor('automation-lab/google-patents-scraper').call(run_input={
    'queries': ['battery assignee:tesla'],
    'maxItems': 100,
    'includeDetails': False,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(items[0])
```

### API usage with cURL

```bash
curl -X POST "https://api.apify.com/v2/acts/automation-lab~google-patents-scraper/runs?token=$APIFY_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"queries":["battery assignee:tesla"],"maxItems":100,"includeDetails":false}'
```

### MCP usage

Use the Apify MCP server with tools scoped to this actor.

Claude Code setup:

```bash
claude mcp add apify-google-patents "https://mcp.apify.com/?tools=automation-lab/google-patents-scraper"
```

Claude Desktop JSON setup:

```json
{
  "mcpServers": {
    "apify-google-patents": {
      "url": "https://mcp.apify.com/?tools=automation-lab/google-patents-scraper"
    }
  }
}
```

Direct MCP URL:

```bash
https://mcp.apify.com/?tools=automation-lab/google-patents-scraper
```

Example prompts:

- "Run Google Patents Scraper for battery assignee:tesla and summarize the top assignees."
- "Extract 50 Google Patents results for solid state battery and return publication numbers."
- "Fetch details for CN113650574B and show the abstract and first claims."

### Scheduling patent monitoring

Create an Apify schedule with the same query each week or month.

Export the dataset to a spreadsheet, database, webhook, or BI tool.

Compare new publication numbers between runs to identify fresh patent activity.

### Detail mode notes

Detail mode visits each patent page after the search result is found.

It is slower because it performs more requests.

It is useful when the dataset needs abstracts, claims, classifications, and citations.

For large landscapes, run search mode first and detail mode on a narrower list.

### Legality and responsible use

This actor extracts publicly available Google Patents pages.

Make sure your use case complies with applicable laws, contracts, and Apify terms.

Do not use scraped data for unlawful surveillance, spam, or rights-infringing activity.

Use conservative limits and avoid unnecessary repeated requests.

### FAQ

#### Why did I get fewer results than expected?

Google Patents can group similar documents, return fewer results for narrow queries, or change results by language and query syntax.

Try a broader query or raise `maxItems`.

#### Why is detail mode slower?

Detail mode fetches one extra public patent page per output item.

Lower `maxItems` or disable detail mode for high-volume monitoring.

#### Can I use Google Patents operators?

Yes.

The actor passes the query string through, so Google Patents syntax can be used directly.

### Related scrapers

Other automation-lab actors can help with adjacent research workflows:

- https://apify.com/automation-lab/google-search-results-scraper
- https://apify.com/automation-lab/website-contact-finder
- https://apify.com/automation-lab/company-employee-scraper

### Changelog

- `0.1` — Initial Google Patents search and detail extraction.

### Support

Open an issue on Apify if you need a new field, a search syntax example, or help with patent-monitoring workflows.

# Actor input Schema

## `queries` (type: `array`):

Google Patents query strings. Use Google Patents syntax such as assignee:tesla, inventor:"John Smith", before:priority:2022, or quoted phrases.

## `patentUrls` (type: `array`):

Optional Google Patents URLs to extract directly, for example https://patents.google.com/patent/US20230000001A1/en.

## `publicationNumbers` (type: `array`):

Optional publication numbers to extract directly, such as US20230000001A1, EP1234567A2, or CN113650574B.

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

Maximum dataset records to save across all queries and direct patent inputs.

## `includeDetails` (type: `boolean`):

Fetch each patent detail page for abstract, claims, classifications, and citation snippets. Slower but richer.

## `language` (type: `string`):

Google Patents language path used for detail pages.

## `requestDelayMs` (type: `integer`):

Delay between requests. Keep conservative for Google Patents; detail mode makes one extra request per patent.

## `proxyConfiguration` (type: `object`):

Optional Apify Proxy settings. Leave disabled unless your environment receives Google Patents 503/temporary blocks.

## Actor input object example

```json
{
  "queries": [
    "battery assignee:tesla"
  ],
  "patentUrls": [],
  "publicationNumbers": [],
  "maxItems": 20,
  "includeDetails": false,
  "language": "en",
  "requestDelayMs": 250,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "queries": [
        "battery assignee:tesla"
    ],
    "patentUrls": [],
    "publicationNumbers": [],
    "maxItems": 20,
    "includeDetails": false,
    "language": "en",
    "requestDelayMs": 250,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/google-patents-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 = {
    "queries": ["battery assignee:tesla"],
    "patentUrls": [],
    "publicationNumbers": [],
    "maxItems": 20,
    "includeDetails": False,
    "language": "en",
    "requestDelayMs": 250,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/google-patents-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 '{
  "queries": [
    "battery assignee:tesla"
  ],
  "patentUrls": [],
  "publicationNumbers": [],
  "maxItems": 20,
  "includeDetails": false,
  "language": "en",
  "requestDelayMs": 250,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call automation-lab/google-patents-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Patents Scraper",
        "description": "Export Google Patents search results and patent detail data for IP research, prior-art review, competitor monitoring, and patent landscapes.",
        "version": "0.1",
        "x-build-id": "yGW3h4iinQhhCKVOb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~google-patents-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-google-patents-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/automation-lab~google-patents-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-google-patents-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/automation-lab~google-patents-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-google-patents-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "queries": {
                        "title": "🔎 Search queries",
                        "type": "array",
                        "description": "Google Patents query strings. Use Google Patents syntax such as assignee:tesla, inventor:\"John Smith\", before:priority:2022, or quoted phrases.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "patentUrls": {
                        "title": "📄 Patent URLs",
                        "type": "array",
                        "description": "Optional Google Patents URLs to extract directly, for example https://patents.google.com/patent/US20230000001A1/en.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "publicationNumbers": {
                        "title": "Publication numbers",
                        "type": "array",
                        "description": "Optional publication numbers to extract directly, such as US20230000001A1, EP1234567A2, or CN113650574B.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum patents",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum dataset records to save across all queries and direct patent inputs.",
                        "default": 20
                    },
                    "includeDetails": {
                        "title": "Include patent details",
                        "type": "boolean",
                        "description": "Fetch each patent detail page for abstract, claims, classifications, and citation snippets. Slower but richer.",
                        "default": false
                    },
                    "language": {
                        "title": "Detail page language",
                        "type": "string",
                        "description": "Google Patents language path used for detail pages.",
                        "default": "en"
                    },
                    "requestDelayMs": {
                        "title": "Request delay (ms)",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Delay between requests. Keep conservative for Google Patents; detail mode makes one extra request per patent.",
                        "default": 250
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify Proxy settings. Leave disabled unless your environment receives Google Patents 503/temporary blocks.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
