# USPTO Trademark Scraper (`devilscrapes/uspto-trademark-scraper`) Actor

Search and export U.S. federal trademark records from the USPTO by mark text, owner name, serial number, or registration number. Structured rows: mark text, owner, status, filing/registration dates, Nice classes, goods & services. No API key.

- **URL**: https://apify.com/devilscrapes/uspto-trademark-scraper.md
- **Developed by:** [DevilScrapes](https://apify.com/devilscrapes) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

<div align="center">
  <img src=".actor/icon.svg" width="160" alt="Devil Scrapes mark" />

## USPTO Trademark Scraper

**💰 $5.00 / 1 000 results** &nbsp;·&nbsp; pay only for results &nbsp;·&nbsp; no credit card to try

_The devil's in the data — we chase down every mark._ 😈

Search and export U.S. federal trademark records from the USPTO by mark text, owner name, serial number, or registration number. Returns owner, status, filing/registration/publication dates, Nice classes, goods & services, and attorney of record — clean typed rows, ready to export.

</div>

---

### 🎯 What this scrapes

USPTO's modern trademark search (`tmsearch.uspto.gov`) is a JS-rendered single-page app, and the official TSDR JSON API now gates bulk access behind a registered API key. This Actor wraps USPTO's trademark search index and TSDR case-status pages directly, so you get a structured row per mark without wrestling either surface yourself.

Give it a free-text query (mark text or owner name), a list of serial numbers, or a list of registration numbers — or mix all three in one run. Every request runs through our fingerprint-rotating HTTP stack and a paced, retrying client so your runs stay clean even when USPTO throttles.

### 🔥 Features

- 🛡️ **Browser fingerprint rotation** — `curl-cffi` replays real Chrome / Firefox / Safari TLS handshakes so USPTO sees a real browser, not a Python script.
- 🌐 **Optional residential proxy rotation** via Apify Proxy — fresh session and exit IP whenever a lookup gets rate-limited.
- 🔁 **Retries with exponential backoff** on `429 / 503` and network errors — up to 5 attempts, honouring `Retry-After` headers.
- 🧱 **Paced TSDR requests** — direct lookups are throttled to roughly one request per second so we never trip USPTO's rate limits.
- 🧊 **Clean, typed dataset rows** — Pydantic-validated fields, ISO-8601 dates, stable serial numbers as IDs.
- 💰 **Pay-Per-Event pricing** — you pay only when a trademark row lands in your dataset. No data, no charge (only the small `actor-start` warm-up fee).

### 💡 Use cases

- **Brand-protection monitoring** — schedule recurring runs against your own mark portfolio to catch status changes (Section 8/15 declarations, oppositions, cancellations) as USPTO posts them.
- **Trademark-watch services** — track a competitor's or client's marks by owner name across renewal cycles without manual TSDR lookups.
- **Clearance research** — pull existing registrations in a Nice class before filing a new application.
- **M&A / brand-portfolio diligence** — quantify a target company's live trademark holdings by owner name in minutes.
- **IP attorney workflows** — bulk-resolve a docket of serial or registration numbers into structured case-status rows for internal tracking systems.

### ⚙️ How to use it

1. Click **Try for free** at the top of the page.
2. Fill in the input form — supply at least one of `query`, `serialNumbers`, or `registrationNumbers`. All three can run together in a single call.
3. Click **Start**. Results stream into the run's dataset as each lookup resolves.
4. When the run finishes, open **Storage → Dataset** to export as JSON, CSV, or Excel — or pull rows via the Apify API.

**Input mode tips:**

- `serialNumbers` and `registrationNumbers` — always processed in full, ignoring `maxResults`.
- `query` — searched against mark text and owner name, capped at `maxResults`.
- `statusFilter` — set to `live` or `dead` to post-filter by parsed status text.

### 📥 Input

| Field | Type | Required | Default | Notes |
|---|---|:--:|---|---|
| `query` | `string` | no* | — | Free-text mark text or owner name to search, 1-200 chars. |
| `serialNumbers` | `array` | no* | — | Direct lookup by USPTO serial number(s), 8 digits each. |
| `registrationNumbers` | `array` | no* | — | Direct lookup by USPTO registration number(s), 1-8 digits each. |
| `statusFilter` | `string` | no | `any` | `any`, `live`, or `dead` — post-filter on parsed status text. |
| `maxResults` | `integer` | no | `20` | Cap on rows returned for `query` mode only. Max 500. |
| `proxyConfiguration` | `object` | no | `{"useApifyProxy": false}` | Apify Proxy configuration. USPTO tolerates direct calls at a light pace. |

\* At least one of `query`, `serialNumbers`, `registrationNumbers` is required.

#### Example input

```json
{
  "query": "BLINKING NAILS",
  "serialNumbers": ["88148890"],
  "registrationNumbers": ["5912174"],
  "statusFilter": "any",
  "maxResults": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

### 📤 Output

Every row is one dataset item.

| Field | Type | Notes |
|---|---|---|
| `serial_number` | `string` | US Serial Number. |
| `registration_number` | `string \| null` | US Registration Number. |
| `mark_text` | `string` | Mark / Mark Literal Elements. |
| `mark_type` | `string \| null` | Mark Type. |
| `standard_character_claim` | `boolean \| null` | Standard Character Claim (Yes/No). |
| `description_of_mark` | `string \| null` | Description of Mark, including Disclaimer text when present. |
| `status` | `string \| null` | Status (free text). |
| `status_date` | `string \| null` | Status Date, ISO-8601. |
| `filing_date` | `string \| null` | Application Filing Date, ISO-8601. |
| `registration_date` | `string \| null` | Registration Date, ISO-8601. |
| `publication_date` | `string \| null` | Publication Date, ISO-8601. |
| `register` | `string \| null` | Principal / Supplemental. |
| `international_classes` | `array` | International Class(es), zero-padded. |
| `goods_services` | `string \| null` | `For:` field — goods & services description. |
| `first_use_date` | `string \| null` | First Use, ISO-8601. |
| `use_in_commerce_date` | `string \| null` | Use in Commerce, ISO-8601. |
| `filing_basis` | `array` | Derived from Filed Use/ITU/44D/44E/66A flags. |
| `owner_name` | `string \| null` | Owner Name. |
| `owner_address` | `string \| null` | Owner Address. |
| `attorney_name` | `string \| null` | Attorney Name. |
| `tsdr_url` | `string` | TSDR case-status URL for this serial number. |
| `scraped_at` | `string` | ISO-8601 UTC timestamp when this row was recorded. |

#### Example output

```json
{
  "serial_number": "88148890",
  "registration_number": "5912174",
  "mark_text": "BLINKING NAILS",
  "mark_type": "Trademark",
  "standard_character_claim": false,
  "description_of_mark": "The mark consists of the stylized wording \"BLINKINGNAILS\" with a butterfly design appearing above the second letter \"I\". Disclaimer: \"NAILS\"",
  "status": "A Section 8 declaration has been accepted.",
  "status_date": "2025-09-26",
  "filing_date": "2018-10-09",
  "registration_date": "2019-11-19",
  "publication_date": "2019-09-03",
  "register": "Principal",
  "international_classes": ["008"],
  "goods_services": "Fingernail polishers, electric or non-electric; Hair-removing tweezers; Nail files, electric; Cuticle nippers; Cuticle tweezers; Electric nail clippers; Electric pedicure sets; Emery boards; Manicure sets; Pedicure sets.",
  "first_use_date": "2017-01-22",
  "use_in_commerce_date": "2017-01-22",
  "filing_basis": ["USE_IN_COMMERCE"],
  "owner_name": "Zhongshan R & F Heavy Makeup Cosmetics Limited Company",
  "owner_address": "Garden, No.36 Rihua Rd, Southern Dist, No.9-189, Tianhuixingyuan, Xinghuiyunjin, Zhongshan, Guangdong, 528455, CHINA",
  "attorney_name": null,
  "tsdr_url": "https://tsdr.uspto.gov/#caseNumber=88148890&caseType=SERIAL_NO&searchType=statusSearch",
  "scraped_at": "2026-07-18T10:12:26+00:00"
}
```

### 💰 Pricing

Pay-Per-Event — you pay only when these events fire:

| Event | USD | What it is |
|---|---:|---|
| `actor-start` | $0.005 | One-off warm-up charge per run |
| `result` | $0.005 | Per trademark row written to the dataset |

Example: 1 000 results at the rates above ≈ **$5.00**. No subscription, no minimum — Apify gives every new account $5 of free credit to start. Commercial trademark-watch platforms charge per-mark subscriptions that add up fast across a portfolio; this Actor bills only for rows that land.

### 🚧 Limitations

- **Search ranking** is controlled by USPTO's trademark search index internally — the order for `query` mode is theirs.
- **`status_date` is null for `query`-mode rows.** USPTO's search index doesn't expose a discrete "status changed on" date for free-text hits; direct `serialNumbers`/`registrationNumbers` lookups always carry a real value when the source page has one.
- **TTAB opposition/cancellation proceeding documents** are out of scope — that's a distinct data surface.
- **Full prosecution-history documents** (office actions, specimens, drawings/images) and **assignment / chain-of-title history** are not included in v1.
- **International/Madrid Protocol or EUIPO marks** are out of scope — US federal (USPTO) marks only.
- **Legal disclaimer** — this tool retrieves public trademark metadata for research and monitoring purposes. It is not a substitute for professional trademark counsel. Always consult a registered trademark attorney for clearance opinions, opposition strategy, or litigation.

### 🔗 Use with n8n

Wire this Actor into your [n8n](https://n8n.io) automations with the official [Apify node](https://www.npmjs.com/package/@apify/n8n-nodes-apify):

1. Add the **Apify** node and pick the **Run Actor** operation.
2. Set the Actor to `devilscrapes/uspto-trademark-scraper` and pass your input as JSON.
3. Chain a **Get Dataset Items** step to read the structured rows into the rest of your workflow (Sheets, Slack, your CRM, an AI agent, …).

Because n8n runs on a schedule or trigger, you get fresh trademark records on autopilot — for example, a daily trademark-watch that alerts you the moment a mark's status changes or a competitor files a confusingly similar mark.

### ❓ FAQ

**Do I need a USPTO API key?**

No. This Actor uses USPTO's public TSDR case-status pages and trademark search index directly — no registered API key required for the surfaces this Actor covers.

**Is the data real-time?**

TSDR case-status pages reflect USPTO's live prosecution record — status changes typically appear within a business day of USPTO posting them.

**Can I monitor my own trademark portfolio automatically?**

Yes — schedule recurring runs via Apify's built-in Schedule feature with your serial or registration numbers. We don't build a separate diff/alerting engine; Apify Schedule plus your own diffing of the dataset covers recurring monitoring.

**Does this cover international or EU trademarks?**

No — this Actor covers US federal (USPTO) marks only. We can build dedicated Actors for EUIPO or Madrid Protocol marks on request.

**Can I get opposition or cancellation (TTAB) history?**

Not in v1 — TTAB proceeding documents are a distinct data surface, already covered by a separate competing Actor. Only case-status summary fields ship here.

**Why is `status_date` sometimes null?**

Rows produced by the free-text `query` mode don't carry a discrete status-change date in USPTO's search index; direct `serialNumbers`/`registrationNumbers` lookups do when the source page has one.

**Why is `attorney_name` sometimes empty?**

Not every filing lists a registered attorney — pro se filings and some foreign-owned marks often omit it.

### 💬 Your feedback

Spotted a bug, hit an edge case, or need a new field (image/logo download, TTAB history, assignment records)? Open an issue on the Actor's **Issues** tab in Apify Console — we ship fixes weekly and read every report.

***

<div align="center">

Built by **[Devil Scrapes](https://apify.com/DevilScrapes)** 😈 — a small fleet of
opinionated public-data Actors. Honest pricing, real engineering, zero fine print.

</div>

# Actor input Schema

## `query` (type: `string`):

Free-text mark text or owner name to search.

## `serialNumbers` (type: `array`):

Direct lookup by USPTO serial number(s) — 8 digits each.

## `registrationNumbers` (type: `array`):

Direct lookup by USPTO registration number(s) — 1-8 digits each.

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

Post-filter on parsed status category.

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

Cap on rows returned for the free-text query mode. Does not cap serialNumbers/registrationNumbers, which always process every listed number.

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

Optional. USPTO tolerated direct calls during verification.

## Actor input object example

```json
{
  "query": "BLINKING NAILS",
  "serialNumbers": [
    "88148890"
  ],
  "registrationNumbers": [
    "5912174"
  ],
  "statusFilter": "any",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `datasetItems` (type: `string`):

All dataset items as JSON.

## `datasetItemsCsv` (type: `string`):

Same data exported to CSV.

## `datasetView` (type: `string`):

Open the run dataset in the Console.

# 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 = {
    "query": "BLINKING NAILS",
    "serialNumbers": [
        "88148890"
    ],
    "registrationNumbers": [
        "5912174"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("devilscrapes/uspto-trademark-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 = {
    "query": "BLINKING NAILS",
    "serialNumbers": ["88148890"],
    "registrationNumbers": ["5912174"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("devilscrapes/uspto-trademark-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 '{
  "query": "BLINKING NAILS",
  "serialNumbers": [
    "88148890"
  ],
  "registrationNumbers": [
    "5912174"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call devilscrapes/uspto-trademark-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "USPTO Trademark Scraper",
        "description": "Search and export U.S. federal trademark records from the USPTO by mark text, owner name, serial number, or registration number. Structured rows: mark text, owner, status, filing/registration dates, Nice classes, goods & services. No API key.",
        "version": "0.0",
        "x-build-id": "5CyPaXLxDAgX2NlfC"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/devilscrapes~uspto-trademark-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-devilscrapes-uspto-trademark-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/devilscrapes~uspto-trademark-scraper/runs": {
            "post": {
                "operationId": "runs-sync-devilscrapes-uspto-trademark-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/devilscrapes~uspto-trademark-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-devilscrapes-uspto-trademark-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": {
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Free-text mark text or owner name to search."
                    },
                    "serialNumbers": {
                        "title": "Serial numbers",
                        "type": "array",
                        "description": "Direct lookup by USPTO serial number(s) — 8 digits each.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "registrationNumbers": {
                        "title": "Registration numbers",
                        "type": "array",
                        "description": "Direct lookup by USPTO registration number(s) — 1-8 digits each.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "statusFilter": {
                        "title": "Status filter",
                        "enum": [
                            "any",
                            "live",
                            "dead"
                        ],
                        "type": "string",
                        "description": "Post-filter on parsed status category.",
                        "default": "any"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Cap on rows returned for the free-text query mode. Does not cap serialNumbers/registrationNumbers, which always process every listed number.",
                        "default": 20
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. USPTO tolerated direct calls during verification.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
