# ⚖️ CourtListener Federal Docket Scraper — RECAP (`nexgendata/courtlistener-federal-docket-scraper`) Actor

Scrape federal court dockets via CourtListener / Free Law Project — case name, docket number, court, parties, attorneys, filings, hearing schedule, jurisdiction. PACER alternative for litigation paralegals, legal-tech, e-discovery vendors, journalists tracking federal litigation.

- **URL**: https://apify.com/nexgendata/courtlistener-federal-docket-scraper.md
- **Developed by:** [Stephan Corbeil](https://apify.com/nexgendata) (community)
- **Categories:** Business, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $8.00 / 1,000 docket returneds

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.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

## CourtListener Federal Docket Scraper

Search federal court dockets via **CourtListener / RECAP** — Free Law Project's open mirror of PACER. Returns case name, docket number, court, parties, attorneys, law firms, judge, nature-of-suit, jurisdiction, hearing schedule, and document counts. Built for litigation paralegals, e-discovery vendors, insurance investigators, financial firms tracking litigation risk on tickers, prisoner-rights advocates, and journalists doing court-watching.

This is a **PACER alternative** that doesn't charge you $0.10/page. Runs against CourtListener's official v4 REST API with cursor pagination. Optional API token for higher rate limits.

### What you get

| Field | Type | Notes |
|---|---|---|
| `case_name` | string | Short caption (e.g. "Brown v. Civil Rights") |
| `case_name_full` | string | Long caption with all parties |
| `docket_number` | string | Court docket number (e.g. `2:26-cv-00356`) |
| `docket_id` | integer | CourtListener internal ID |
| `court` | string | Court name (e.g. "District Court, E.D. Texas") |
| `court_id` | string | Court code (e.g. `txed`, `ca9`, `scotus`) |
| `court_citation` | string | Bluebook citation (e.g. "E.D. Tex.") |
| `date_filed` | string | ISO date the case was filed |
| `date_terminated` | string | ISO date or null |
| `assigned_to` | string | Judge name |
| `referred_to` | string | Magistrate judge name |
| `nature_of_suit` | string | NOS description |
| `cause` | string | Statute basis (e.g. "42:1981 Civil Rights") |
| `jurisdiction_type` | string | "Federal Question" / "Diversity" / etc. |
| `jury_demand` | string | "Plaintiff" / "Defendant" / "None" |
| `chapter` | string | Bankruptcy chapter (7/11/13) when applicable |
| `parties` | string[] | Party names |
| `party_ids` | integer[] | CourtListener party IDs (for cross-joins) |
| `attorneys` | string[] | Attorney names |
| `attorney_ids` | integer[] | CL attorney IDs |
| `firms` | string[] | Law firm names |
| `firm_ids` | integer[] | CL firm IDs |
| `pacer_case_id` | string | PACER ID for direct cross-reference |
| `docket_url` | string | Public courtlistener.com URL |
| `recap_documents_count` | integer | Number of RECAP documents in this docket |

### Use cases

- **Litigation tracking for public companies** — pull every new federal docket naming `Tesla` / `Apple` / `Microsoft` weekly, surface to legal-ops dashboard.
- **Paralegal docket review** — search by judge, by NOS code, by date range to build a bench memo for a new case.
- **Insurance underwriting** — flag commercial insureds with newly-filed federal litigation before binding.
- **Journalist court-watching** — alert when a notable plaintiff or defendant is named in a new filing.
- **Bankruptcy practice intel** — filter by `chapter=11`, court, date to monitor new filings in your district.
- **Distressed-debt funds** — scan all chapter 11 filings nationally for upstream creditor positioning.

### Quick start

Input JSON:

```json
{
  "search_query": "patent infringement",
  "court": "txed",
  "date_filed_after": "2024-01-01",
  "max_results": 100
}
````

Sample output item:

```json
{
  "case_name": "Omni MedSci, Inc. v. Samsung Electronics, Co. LTD.",
  "docket_number": "2:26-cv-00356",
  "docket_id": 73287997,
  "court": "District Court, E.D. Texas",
  "court_id": "txed",
  "court_citation": "E.D. Tex.",
  "date_filed": "2026-05-01",
  "jurisdiction_type": "Federal Question",
  "cause": "35:271 Patent Infringement",
  "parties": ["Omni MedSci, Inc.", "Samsung Electronics, Co. LTD."],
  "attorneys": [],
  "docket_url": "https://www.courtlistener.com/docket/73287997/omni-medsci-inc-v-samsung..."
}
```

### Python SDK example

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("nexgendata/courtlistener-federal-docket-scraper").call(run_input={
    "search_query": "Samsung",
    "court": "txed",
    "date_filed_after": "2025-01-01",
    "max_results": 200,
})
for d in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(d["date_filed"], d["docket_number"], d["case_name"])
```

### cURL example

```bash
curl -X POST "https://api.apify.com/v2/acts/nexgendata~courtlistener-federal-docket-scraper/runs?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"search_query":"chapter 11","court":"deb","max_results":50}'
```

### Integrations

- **Zapier / Make.com / n8n** — push new dockets into Slack / Airtable / Microsoft Teams in real time.
- **Postgres / Snowflake / BigQuery** — sync via Apify webhooks for litigation-intel warehouses.
- **Lex Machina / Bloomberg Law alternative** — combine this actor with our other legal-data actors for a self-hosted analytics pipeline.

### Pricing

Pay-per-event:

- **Actor start**: $0.00005 (one-time per run)
- **Per docket returned**: $0.008

Cost calculator:

| Dockets | Approx. cost |
|---|---|
| 50 | $0.40 |
| 100 | $0.80 |
| 500 | $4.00 |
| 1,000 | $8.00 |
| 5,000 | $40.00 |

Premium pricing reflects the fact that PACER charges $0.10/page (capped at $3.00/document) for the same underlying records — at any meaningful volume this actor is dramatically cheaper than PACER.

### FAQ

**Q: Do I need a CourtListener API token?**\
A: No, but the anonymous tier is shared across all datacenter IPs (~5K req/day). For sustained use, free signup at https://www.courtlistener.com/help/api/rest/ and pass the token via `apiToken`. Tokens get you ~5K req/day per token.

**Q: How fresh is the data?**\
A: RECAP coverage is excellent for high-traffic federal dockets (anything any RECAP user has fetched is mirrored within minutes). For obscure / sealed / never-fetched dockets, coverage may lag PACER. CourtListener's daily Recap-from-PACER batch keeps the index hot.

**Q: What about state courts?**\
A: This actor focuses on federal RECAP dockets (district / circuit / SCOTUS / bankruptcy). For state-level coverage CourtListener has limited support; pair with our `court-records-search` actor for select state systems.

**Q: Can I get the underlying PDFs?**\
A: This actor returns docket *metadata* including a count of available RECAP documents. To download the PDFs themselves, follow the `docket_url` in your downstream code or use CourtListener's per-document API endpoint (`/api/rest/v4/recap-documents/`).

**Q: How do I find court IDs?**\
A: See https://www.courtlistener.com/help/api/jurisdictions/. Common ones: `scotus`, `ca1`-`ca11` + `cadc` + `cafc` (circuits), `nysd`/`cand`/`txed`/etc. (districts), `*-bankr` for bankruptcy variants.

**Q: Are sealed cases included?**\
A: No. CourtListener mirrors only public PACER dockets. Sealed records are by definition not in the dataset.

### Related actors from nexgendata

- [Court Records Search](https://apify.com/nexgendata/court-records-search) — broader court-records aggregator covering state and county systems beyond federal.
- [Government Contracts Search](https://apify.com/nexgendata/government-contracts-search) — pair litigation tracking with federal contracting history for compliance / due-diligence workflows.
- [SEC EDGAR Search](https://apify.com/nexgendata/sec-edgar-search) — cross-reference public-company litigation against material disclosures.

### About nexgendata

Built and maintained by [nexgendata](https://apify.com/nexgendata?fpr=2ayu9b) — 160+ actors and MCP servers for compliance, civic data, lead gen, and developer workflows. Need higher volume, custom output, or a private fork? Email steve\_corbeil@hotmail.com.

# Actor input Schema

## `search_query` (type: `string`):

Free-text search across case name, parties, attorneys, nature of suit. Example: 'civil rights', 'patent infringement', 'Apple v. Samsung'.

## `court` (type: `string`):

Optional court ID to restrict results. Common IDs: 'scotus' (Supreme Court), 'ca9' (9th Circuit), 'ca5' (5th Circuit), 'cand' (N.D. Cal.), 'nysd' (S.D.N.Y.), 'txed' (E.D. Tex.), 'dcd' (D. D.C.). Full list at https://www.courtlistener.com/help/api/jurisdictions/.

## `date_filed_after` (type: `string`):

ISO date YYYY-MM-DD. Filter to dockets filed on or after this date.

## `date_filed_before` (type: `string`):

ISO date YYYY-MM-DD. Filter to dockets filed on or before this date.

## `nature_of_suit` (type: `string`):

Optional federal nature-of-suit code (e.g. 830 = Patent, 442 = Civil Rights Employment, 442 / 540 / 550 etc.). Leave blank for all.

## `max_results` (type: `integer`):

Maximum number of dockets to return (1-2000). Each result is one docket; CourtListener returns ~20 per cursor page.

## `apiToken` (type: `string`):

Your personal CourtListener token. Free signup at https://www.courtlistener.com/help/api/rest/. Without one you share the anonymous quota (5K req/day across all anonymous datacenter IPs).

## Actor input object example

```json
{
  "search_query": "civil rights",
  "date_filed_after": "2024-01-01",
  "max_results": 50
}
```

# 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 = {
    "search_query": "civil rights",
    "court": "",
    "date_filed_after": "2024-01-01",
    "date_filed_before": "",
    "nature_of_suit": "",
    "max_results": 50,
    "apiToken": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/courtlistener-federal-docket-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 = {
    "search_query": "civil rights",
    "court": "",
    "date_filed_after": "2024-01-01",
    "date_filed_before": "",
    "nature_of_suit": "",
    "max_results": 50,
    "apiToken": "",
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/courtlistener-federal-docket-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 '{
  "search_query": "civil rights",
  "court": "",
  "date_filed_after": "2024-01-01",
  "date_filed_before": "",
  "nature_of_suit": "",
  "max_results": 50,
  "apiToken": ""
}' |
apify call nexgendata/courtlistener-federal-docket-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "⚖️ CourtListener Federal Docket Scraper — RECAP",
        "description": "Scrape federal court dockets via CourtListener / Free Law Project — case name, docket number, court, parties, attorneys, filings, hearing schedule, jurisdiction. PACER alternative for litigation paralegals, legal-tech, e-discovery vendors, journalists tracking federal litigation.",
        "version": "0.0",
        "x-build-id": "js0x7xigf3bqveRgK"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~courtlistener-federal-docket-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-courtlistener-federal-docket-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/nexgendata~courtlistener-federal-docket-scraper/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-courtlistener-federal-docket-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/nexgendata~courtlistener-federal-docket-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-courtlistener-federal-docket-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",
                "required": [
                    "search_query"
                ],
                "properties": {
                    "search_query": {
                        "title": "Search query (full text)",
                        "type": "string",
                        "description": "Free-text search across case name, parties, attorneys, nature of suit. Example: 'civil rights', 'patent infringement', 'Apple v. Samsung'."
                    },
                    "court": {
                        "title": "Court ID filter",
                        "type": "string",
                        "description": "Optional court ID to restrict results. Common IDs: 'scotus' (Supreme Court), 'ca9' (9th Circuit), 'ca5' (5th Circuit), 'cand' (N.D. Cal.), 'nysd' (S.D.N.Y.), 'txed' (E.D. Tex.), 'dcd' (D. D.C.). Full list at https://www.courtlistener.com/help/api/jurisdictions/."
                    },
                    "date_filed_after": {
                        "title": "Filed on or after",
                        "type": "string",
                        "description": "ISO date YYYY-MM-DD. Filter to dockets filed on or after this date."
                    },
                    "date_filed_before": {
                        "title": "Filed on or before",
                        "type": "string",
                        "description": "ISO date YYYY-MM-DD. Filter to dockets filed on or before this date."
                    },
                    "nature_of_suit": {
                        "title": "Nature of suit code",
                        "type": "string",
                        "description": "Optional federal nature-of-suit code (e.g. 830 = Patent, 442 = Civil Rights Employment, 442 / 540 / 550 etc.). Leave blank for all."
                    },
                    "max_results": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of dockets to return (1-2000). Each result is one docket; CourtListener returns ~20 per cursor page.",
                        "default": 100
                    },
                    "apiToken": {
                        "title": "CourtListener API token (optional)",
                        "type": "string",
                        "description": "Your personal CourtListener token. Free signup at https://www.courtlistener.com/help/api/rest/. Without one you share the anonymous quota (5K req/day across all anonymous datacenter IPs)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
