# Federal Register Scraper — Rules, Notices & Regulations (`logiover/federal-register-scraper`) Actor

Scrape US Federal Register by keyword or agency. Extract document number, title, type, abstract, agencies, dates, URLs, and citation. No API key, no login.

- **URL**: https://apify.com/logiover/federal-register-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** Lead generation, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 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.
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

## Federal Register Scraper — Rules, Notices & Regulations

Extract documents from the US Federal Register — the official journal of the US federal government — by keyword, agency, document type, or date range. No API key required. Powered by the official, keyless Federal Register public API.

### What You Can Do

- Search the full text of Federal Register documents by keyword or phrase
- Filter by agency (EPA, FDA, DOT, OSHA, and 400+ more)
- Filter by document type: Final Rules, Proposed Rules, Notices, Presidential Documents
- Filter by publication date range
- Retrieve thousands of documents per run (up to 10,000)
- Export to JSON, CSV, or Excel for compliance monitoring, legal research, and regulatory intelligence

### Why Federal Register Data?

The Federal Register publishes over 80,000 documents per year. Every federal agency rulemaking, public notice, executive order, and regulatory proposal must be published here before it takes effect. This makes it the most authoritative source for:

- **Compliance teams** tracking rule changes that affect their industry
- **Legal and policy researchers** monitoring regulatory activity
- **Lobbyists and advocacy groups** watching proposed rules during the comment period
- **Journalists** covering federal policy
- **Data scientists** building regulatory datasets for NLP and ML pipelines
- **Government contractors** staying ahead of procurement-related notices

The official Federal Register website offers search but no bulk export. This actor bridges that gap.

### Input Configuration

| Field | Type | Default | Description |
|---|---|---|---|
| `query` | String | — | Keyword or phrase to search |
| `agencies` | Array | [] | Agency slugs, e.g. `["epa", "fda", "dot"]` |
| `types` | Array | [] | Document types: `RULE`, `PRORULE`, `NOTICE`, `PRESDOCU` |
| `dateFrom` | String | — | Start date `YYYY-MM-DD` |
| `dateTo` | String | — | End date `YYYY-MM-DD` |
| `maxResults` | Integer | 200 | Max documents to return (1–10,000) |
| `mode` | String | `search` | `search` or `agencyDocs` |

#### Mode: `search`

Searches the Federal Register by keyword. You can combine this with agency, type, and date filters.

```json
{
  "query": "artificial intelligence",
  "maxResults": 500
}
````

#### Mode: `agencyDocs`

Returns all recent documents from one or more agencies, without a keyword filter. Useful for monitoring everything an agency publishes.

```json
{
  "mode": "agencyDocs",
  "agencies": ["epa"],
  "maxResults": 1000
}
```

#### Combining Filters

All filters stack. You can combine keyword search with agency, type, and date filters:

```json
{
  "query": "clean air",
  "agencies": ["epa"],
  "types": ["RULE", "PRORULE"],
  "dateFrom": "2024-01-01",
  "dateTo": "2024-12-31",
  "maxResults": 500
}
```

### Output Fields

Each document record contains:

| Field | Type | Description |
|---|---|---|
| `documentNumber` | String | Official FR document number, e.g. `2024-12345` |
| `title` | String | Full document title |
| `type` | String | `RULE`, `PRORULE`, `NOTICE`, or `PRESDOCU` |
| `abstract` | String | Brief summary of the document |
| `agencies` | String | Comma-separated list of issuing agencies |
| `publicationDate` | String | Publication date `YYYY-MM-DD` |
| `effectiveDate` | String | Effective date `YYYY-MM-DD` (if applicable) |
| `htmlUrl` | String | Full document URL on federalregister.gov |
| `pdfUrl` | String | Direct PDF download URL |
| `citation` | String | Official citation, e.g. `89 FR 12345` |

#### Sample Output

```json
{
  "documentNumber": "2024-28147",
  "title": "Artificial Intelligence Risk Management Framework for Federal Agencies",
  "type": "NOTICE",
  "abstract": "This notice announces the availability of an updated risk management framework for artificial intelligence systems used in federal decision-making processes.",
  "agencies": "Office of Science and Technology Policy",
  "publicationDate": "2024-11-15",
  "effectiveDate": "",
  "htmlUrl": "https://www.federalregister.gov/documents/2024/11/15/2024-28147/artificial-intelligence-risk-management-framework",
  "pdfUrl": "https://www.gpo.gov/fdsys/pkg/FR-2024-11-15/pdf/2024-28147.pdf",
  "citation": "89 FR 90512"
}
```

### How It Works

This actor calls the official Federal Register API at `https://www.federalregister.gov/api/v1/documents.json`. This is a completely public, keyless API — no authentication, no rate limits for reasonable usage. The API is maintained by the US Government Publishing Office (GPO) and is designed for programmatic access.

The actor paginates through results (up to 1,000 documents per page) until it hits your `maxResults` limit or exhausts all matching documents. For large queries like `"regulation"` or agency-wide pulls, this can return thousands of documents in a single run.

#### Agency Slugs

Agency slugs are lowercase, hyphenated identifiers used by the Federal Register API. Examples:

| Agency | Slug |
|---|---|
| Environmental Protection Agency | `epa` |
| Food and Drug Administration | `food-and-drug-administration` |
| Department of Transportation | `transportation-department` |
| Occupational Safety and Health Administration | `occupational-safety-and-health-administration` |
| Securities and Exchange Commission | `securities-and-exchange-commission` |
| Federal Communications Commission | `federal-communications-commission` |
| Federal Trade Commission | `federal-trade-commission` |
| Department of Homeland Security | `homeland-security-department` |
| Treasury Department | `treasury-department` |
| Department of Justice | `justice-department` |

You can find any agency's slug by searching the Federal Register website and checking the URL parameter. The API accepts partial slug matching.

#### Document Types

| Type Code | Description |
|---|---|
| `RULE` | Final Rules — legally binding regulations |
| `PRORULE` | Proposed Rules — open for public comment |
| `NOTICE` | Notices — announcements, meetings, grant awards |
| `PRESDOCU` | Presidential Documents — executive orders, proclamations |

### Use Cases

#### Compliance Monitoring

Track all final rules published by the EPA or OSHA in the last 90 days:

```json
{
  "agencies": ["epa", "occupational-safety-and-health-administration"],
  "types": ["RULE"],
  "dateFrom": "2024-10-01",
  "maxResults": 500
}
```

#### Proposed Rule Comment Tracking

Find all proposed rules with an open comment period in your industry:

```json
{
  "query": "financial services",
  "types": ["PRORULE"],
  "dateFrom": "2024-01-01",
  "maxResults": 200
}
```

#### AI and Tech Policy Research

Monitor all AI-related regulatory activity across the federal government:

```json
{
  "query": "artificial intelligence",
  "maxResults": 1000
}
```

#### Agency Activity Audit

Get a complete picture of what the SEC published this year:

```json
{
  "mode": "agencyDocs",
  "agencies": ["securities-and-exchange-commission"],
  "dateFrom": "2024-01-01",
  "maxResults": 2000
}
```

#### Legal Citation Research

Search by a specific regulatory topic and export citations for legal briefs:

```json
{
  "query": "clean water act effluent limitations",
  "agencies": ["epa"],
  "types": ["RULE"],
  "maxResults": 100
}
```

### Performance and Limits

- **No API key required** — the Federal Register API is completely public
- **No login required** — no account, no OAuth, no credentials
- **Per-page limit**: 1,000 results per API call
- **Max results**: 10,000 per actor run
- **Speed**: Typically 1,000–5,000 documents per minute
- **Memory**: 512 MB (sufficient for any query size)
- **Datacenter proxy** used by default (the Federal Register API is not blocked)

The Federal Register API returns total\_pages in each response, so the actor knows exactly how many pages to fetch. Pagination is automatic — you only need to set `maxResults`.

### Frequently Asked Questions

#### Does this actor require an API key?

No. The Federal Register API (`federalregister.gov/api/v1`) is a completely free, public government API with no authentication required. You can verify this yourself by visiting `https://www.federalregister.gov/api/v1/documents.json?conditions[term]=test&per_page=5` in your browser.

#### How recent is the data?

Documents are typically available within 24 hours of publication. The Federal Register publishes on business days, and the API reflects the same-day publication.

#### Can I get the full text of documents?

The API returns the abstract and a URL to the full HTML document. You can use the `htmlUrl` field to access the complete document. For bulk full-text extraction, combine this actor with a web scraper pointed at those URLs.

#### How do I find the right agency slug?

Visit `https://www.federalregister.gov/api/v1/agencies.json` for a complete list of all agencies and their slugs. You can also search for an agency on federalregister.gov and check the URL — the slug appears after `/agencies/`.

#### What is the difference between RULE and PRORULE?

A `RULE` (Final Rule) is a legally binding regulation that has completed the rulemaking process. A `PRORULE` (Proposed Rule / NPRM) is a draft regulation open for public comment — it is not yet binding.

#### Can I filter by multiple agencies and types at once?

Yes. All filters stack. You can pass multiple agency slugs and multiple document types in the same run. The API treats multiple values of the same filter as OR (any match), while different filter types are AND (all must match).

#### How many results can I get per run?

Up to 10,000. The Federal Register API can return up to 1,000 results per page, and the actor will paginate automatically. For unrestricted keyword searches like `"regulation"`, there may be hundreds of thousands of matching documents — use `maxResults` to cap the output.

#### Is this legal to scrape?

Yes. All Federal Register content is in the public domain (US government works are not subject to copyright). The API is provided specifically for programmatic access and is documented at `https://www.federalregister.gov/developers/api/v1`.

### Data Source

All data is sourced from the official US Federal Register API:

- **Base URL**: `https://www.federalregister.gov/api/v1/`
- **Documentation**: https://www.federalregister.gov/developers/api/v1
- **Publisher**: US Government Publishing Office (GPO)
- **Coverage**: All Federal Register documents since 1994 (full-text since 2000)

The Federal Register has been published every federal business day since 1936. The API covers documents from 1994 onward, with full-text search available for documents from 2000 onward.

# Actor input Schema

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

Keyword or phrase to search in the Federal Register

## `agencies` (type: `array`):

List of agency slugs to filter results (e.g. epa, fda)

## `types` (type: `array`):

Filter by document types: RULE, PRORULE, NOTICE, PRESDOCU

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

Start date for publication date filter (YYYY-MM-DD)

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

End date for publication date filter (YYYY-MM-DD)

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

Maximum number of documents to return (default: 1000, max: 10000).

## `mode` (type: `string`):

search: search by keyword; agencyDocs: get all docs for agency slugs

## Actor input object example

```json
{
  "query": "artificial intelligence",
  "agencies": [
    "epa"
  ],
  "types": [
    "RULE",
    "NOTICE"
  ],
  "dateFrom": "2024-01-01",
  "dateTo": "2024-12-31",
  "maxResults": 1000,
  "mode": "search"
}
```

# Actor output Schema

## `results` (type: `string`):

All records extracted by this run. Open the Dataset tab to browse, filter, and export as CSV, JSON, or Excel.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/federal-register-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("logiover/federal-register-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 '{}' |
apify call logiover/federal-register-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Federal Register Scraper — Rules, Notices & Regulations",
        "description": "Scrape US Federal Register by keyword or agency. Extract document number, title, type, abstract, agencies, dates, URLs, and citation. No API key, no login.",
        "version": "1.0",
        "x-build-id": "kxQETCWbF8Tbgaanb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/logiover~federal-register-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-logiover-federal-register-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/logiover~federal-register-scraper/runs": {
            "post": {
                "operationId": "runs-sync-logiover-federal-register-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/logiover~federal-register-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-logiover-federal-register-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": "Keyword or phrase to search in the Federal Register"
                    },
                    "agencies": {
                        "title": "Agency Slugs",
                        "type": "array",
                        "description": "List of agency slugs to filter results (e.g. epa, fda)",
                        "items": {
                            "type": "string"
                        }
                    },
                    "types": {
                        "title": "Document Types",
                        "type": "array",
                        "description": "Filter by document types: RULE, PRORULE, NOTICE, PRESDOCU",
                        "items": {
                            "type": "string"
                        }
                    },
                    "dateFrom": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Start date for publication date filter (YYYY-MM-DD)"
                    },
                    "dateTo": {
                        "title": "Date To",
                        "type": "string",
                        "description": "End date for publication date filter (YYYY-MM-DD)"
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of documents to return (default: 1000, max: 10000).",
                        "default": 1000
                    },
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "agencyDocs"
                        ],
                        "type": "string",
                        "description": "search: search by keyword; agencyDocs: get all docs for agency slugs",
                        "default": "search"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
