# USPTO Trademark Status Checker (`automation-lab/uspto-trademark-status-checker`) Actor

Check USPTO trademark serial and registration numbers in bulk. Export status, owners, filing dates, classes, goods/services, and TSDR links.

- **URL**: https://apify.com/automation-lab/uspto-trademark-status-checker.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Other
- **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

## USPTO Trademark Status Checker

Check USPTO trademark serial and registration numbers in bulk and export clean status data from the official TSDR system.

The actor turns a list of trademark numbers into structured records with mark name, live/dead status, owner, dates, goods and services, classes, attorney, and source links.

---

### What does USPTO Trademark Status Checker do?

USPTO Trademark Status Checker reads public USPTO Trademark Status and Document Retrieval (TSDR) status pages and converts them into spreadsheet-ready data.

Use it when you have serial numbers or registration numbers and need a repeatable export instead of opening each TSDR page by hand.

The actor is designed for official-data workflows, portfolio checks, due diligence, and brand monitoring.

### Who is it for?

- 🧑‍⚖️ **IP attorneys** checking client trademark portfolios
- 🛡️ **Brand protection teams** monitoring live/dead status changes
- 🛒 **Amazon and private-label sellers** validating marks before product launches
- 🧾 **Due diligence teams** reviewing trademark assets in acquisitions
- 🔎 **Domain and naming researchers** checking whether a brand name is already protected
- 📊 **Operations teams** that need CSV, JSON, Excel, or API output from USPTO pages

### Why use this actor?

Manual TSDR checks are slow when you need to review dozens or hundreds of marks.

This actor helps you:

- ✅ Check many serial or registration numbers in one run
- ✅ Export normalized results to CSV, JSON, Excel, XML, or API
- ✅ Keep official USPTO source links with every row
- ✅ Preserve per-number errors for invalid or empty records
- ✅ Avoid browser automation overhead by using server-rendered USPTO pages

### What data can you extract?

| Field | Description |
| --- | --- |
| `inputNumber` | Number exactly as you entered it |
| `normalizedNumber` | Digits-only USPTO number |
| `numberType` | Serial, registration, or unknown |
| `markName` | Trademark mark text |
| `status` | USPTO status text |
| `statusDate` | Date associated with the current status |
| `filingDate` | Application filing date |
| `registrationNumber` | Registration number, when available |
| `registrationDate` | Registration date, when available |
| `register` | Principal or Supplemental register |
| `markType` | USPTO mark type |
| `liveDeadFlag` | LIVE or DEAD summary when detected |
| `ownerName` | Current owner name |
| `ownerAddress` | Current owner address |
| `attorneyName` | Attorney of record |
| `goodsServices` | Goods and services description |
| `classes` | International classes |
| `tm5Status` | TM5 common status descriptor |
| `tsdrUrl` | Official USPTO status page |
| `documentsUrl` | Official USPTO documents tab link |
| `error` | Per-number error, if any |
| `scrapedAt` | Extraction timestamp |

### How much does it cost to check USPTO trademark status?

The actor uses pay-per-event pricing.

Current pricing is a $0.005 run-start fee plus a tiered per-record fee. The BRONZE per-record price is $0.000024217, with lower rates on higher Apify usage tiers.

This pricing works well for both one-off due diligence and recurring portfolio checks because you only pay for processed numbers.

### Input options

You can provide numbers in two ways:

1. Add values to **Serial or registration numbers**.
2. Paste a bulk list into **Paste numbers**.

Numbers can contain punctuation, spaces, or line breaks. The actor normalizes them to digits before requesting USPTO TSDR.

### Example input

```json
{
  "trademarkNumbers": ["85071981", "90000000", "74656267"],
  "includeDocuments": true,
  "maxConcurrency": 2,
  "requestDelayMs": 250
}
````

### Example output

```json
{
  "inputNumber": "85071981",
  "normalizedNumber": "85071981",
  "numberType": "serial",
  "markName": "AVB",
  "status": "REGISTERED AND RENEWED",
  "statusDate": "Jun. 25, 2020",
  "filingDate": "Jun. 25, 2010",
  "registrationNumber": "4012345",
  "registrationDate": "Aug. 16, 2011",
  "liveDeadFlag": "LIVE",
  "ownerName": "Example owner",
  "classes": ["010"],
  "tsdrUrl": "https://tsdr.uspto.gov/statusview/sn85071981",
  "documentsUrl": "https://tsdr.uspto.gov/#caseNumber=85071981&caseSearchType=US_APPLICATION&caseType=DEFAULT&searchType=documentSearch",
  "error": null,
  "scrapedAt": "2026-06-22T00:00:00.000Z"
}
```

Exact field values depend on the live USPTO TSDR record.

### How to run it

1. Open the actor on Apify.
2. Paste serial or registration numbers.
3. Keep concurrency at the default value for large lists.
4. Start the run.
5. Download the dataset as CSV, JSON, Excel, XML, or HTML.

### Tips for best results

- Use official USPTO serial or registration numbers.
- Keep very large checks conservative to avoid USPTO throttling.
- Use `requestDelayMs` if you are checking long portfolios.
- Keep `includeDocuments` enabled when reviewers need source links.
- Review the `error` field instead of assuming every number exists.

### Handling invalid numbers

The actor does not fail the whole run when one number is invalid.

Instead, it saves a row with the original input and an `error` message.

This makes it easier to clean spreadsheets because successful and failed checks stay aligned with your input list.

### Integrations

You can connect USPTO Trademark Status Checker to:

- 📄 Google Sheets for portfolio monitoring
- 🧰 Zapier or Make for recurring brand checks
- 🗄️ Airtable for trademark asset databases
- 📬 Slack or email alerts when a downstream workflow detects status changes
- 🧪 Internal due-diligence tools using the Apify API

### API usage

#### Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/uspto-trademark-status-checker').call({
  trademarkNumbers: ['85071981', '90000000'],
  includeDocuments: true
});

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

#### Python

```python
from apify_client import ApifyClient
import os

client = ApifyClient(os.environ['APIFY_TOKEN'])
run = client.actor('automation-lab/uspto-trademark-status-checker').call(run_input={
    'trademarkNumbers': ['85071981', '90000000'],
    'includeDocuments': True,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(items)
```

#### cURL

```bash
curl -X POST 'https://api.apify.com/v2/acts/automation-lab~uspto-trademark-status-checker/runs?token=YOUR_APIFY_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"trademarkNumbers":["85071981","90000000"],"includeDocuments":true}'
```

### MCP integration

Use this actor from Claude Desktop, Claude Code, or other MCP clients through Apify MCP Server.

MCP URL:

```text
https://mcp.apify.com/?tools=automation-lab/uspto-trademark-status-checker
```

Claude Code setup:

```bash
claude mcp add apify-uspto-trademark-checker https://mcp.apify.com/?tools=automation-lab/uspto-trademark-status-checker
```

Claude Desktop JSON config:

```json
{
  "mcpServers": {
    "apify-uspto-trademark-checker": {
      "url": "https://mcp.apify.com/?tools=automation-lab/uspto-trademark-status-checker"
    }
  }
}
```

Example prompts:

- "Check these USPTO serial numbers and summarize which marks are live."
- "Turn this trademark portfolio into a CSV with owner, status, filing date, and TSDR links."
- "Find rows with missing or invalid trademark numbers from this list."

### Official source

The actor reads public USPTO TSDR status pages.

Each dataset item includes the official source URL so you can click through and verify the current record.

### Reliability notes

USPTO is a government website and may throttle bursts of traffic.

The actor uses conservative defaults, retries temporary 403/429/5xx responses, and exposes advanced delay and concurrency settings.

If you run very large lists, use lower concurrency and a delay between requests.

### Legality

USPTO trademark status pages are public government records.

You should still use the data responsibly, respect USPTO availability, and follow applicable laws and professional duties for your use case.

This actor does not bypass logins, paywalls, or private systems.

### FAQ

#### Why do I see an error for one number?

The number may be invalid, missing from TSDR, or temporarily unavailable. Check the `error` field and open the `tsdrUrl` manually if you need to verify.

#### Why is a run slower for large lists?

The actor intentionally uses conservative concurrency because USPTO can throttle bursts. Increase concurrency carefully or decrease it for maximum reliability.

#### Can I monitor status changes?

Yes. Schedule the actor on Apify, export each run, and compare `status`, `statusDate`, and `liveDeadFlag` in your downstream workflow.

### Related scrapers

Other automation-lab actors can support adjacent due-diligence workflows:

- https://apify.com/automation-lab/website-contact-finder
- https://apify.com/automation-lab/company-website-finder
- https://apify.com/automation-lab/domain-email-finder

### Support

If a USPTO layout change breaks extraction, open an Apify issue with a run link and example serial numbers.

### Changelog

#### 0.1

Initial version with bulk trademark number input, TSDR status extraction, per-number errors, and official source links.

# Actor input Schema

## `trademarkNumbers` (type: `array`):

USPTO serial or registration numbers to check. Use 7- or 8-digit numbers; punctuation and spaces are ignored.

## `numbersText` (type: `string`):

Optional bulk paste area. Numbers can be separated by new lines, spaces, commas, or semicolons.

## `includeDocuments` (type: `boolean`):

Add a direct USPTO TSDR documents-tab URL for each trademark record.

## `maxConcurrency` (type: `integer`):

Number of USPTO status pages to request at the same time. Keep this conservative to avoid government-site throttling.

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

Optional per-worker delay after each checked number. Increase this for very large lists.

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

Optional Apify Proxy settings. The official USPTO pages usually work without a proxy; enable only if your run is throttled.

## Actor input object example

```json
{
  "trademarkNumbers": [
    "85071981",
    "90000000",
    "74656267"
  ],
  "includeDocuments": true,
  "maxConcurrency": 2,
  "requestDelayMs": 250,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "trademarkNumbers": [
        "85071981",
        "90000000",
        "74656267"
    ],
    "includeDocuments": true,
    "maxConcurrency": 2,
    "requestDelayMs": 250
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/uspto-trademark-status-checker").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 = {
    "trademarkNumbers": [
        "85071981",
        "90000000",
        "74656267",
    ],
    "includeDocuments": True,
    "maxConcurrency": 2,
    "requestDelayMs": 250,
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/uspto-trademark-status-checker").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 '{
  "trademarkNumbers": [
    "85071981",
    "90000000",
    "74656267"
  ],
  "includeDocuments": true,
  "maxConcurrency": 2,
  "requestDelayMs": 250
}' |
apify call automation-lab/uspto-trademark-status-checker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "USPTO Trademark Status Checker",
        "description": "Check USPTO trademark serial and registration numbers in bulk. Export status, owners, filing dates, classes, goods/services, and TSDR links.",
        "version": "0.1",
        "x-build-id": "fatx9w70zWfdFkwk7"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~uspto-trademark-status-checker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-uspto-trademark-status-checker",
                "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~uspto-trademark-status-checker/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-uspto-trademark-status-checker",
                "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~uspto-trademark-status-checker/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-uspto-trademark-status-checker",
                "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": {
                    "trademarkNumbers": {
                        "title": "Serial or registration numbers",
                        "type": "array",
                        "description": "USPTO serial or registration numbers to check. Use 7- or 8-digit numbers; punctuation and spaces are ignored.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "numbersText": {
                        "title": "Paste numbers (optional)",
                        "type": "string",
                        "description": "Optional bulk paste area. Numbers can be separated by new lines, spaces, commas, or semicolons."
                    },
                    "includeDocuments": {
                        "title": "Include TSDR documents link",
                        "type": "boolean",
                        "description": "Add a direct USPTO TSDR documents-tab URL for each trademark record.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Maximum concurrency",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Number of USPTO status pages to request at the same time. Keep this conservative to avoid government-site throttling.",
                        "default": 2
                    },
                    "requestDelayMs": {
                        "title": "Delay between requests (ms)",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Optional per-worker delay after each checked number. Increase this for very large lists.",
                        "default": 250
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify Proxy settings. The official USPTO pages usually work without a proxy; enable only if your run is throttled.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
