# LawyerLegion Attorney Directory Scraper (`automation-lab/lawyerlegion-attorney-directory-scraper`) Actor

⚖️ Extract public Lawyer Legion attorney profiles, firm contacts, practice areas, education, and bar data for legal lead workflows.

- **URL**: https://apify.com/automation-lab/lawyerlegion-attorney-directory-scraper.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

## LawyerLegion Attorney Directory Scraper

Extract public attorney lead data from Lawyer Legion directory and profile pages.

The actor turns Lawyer Legion search pages into structured attorney records you can export to JSON, CSV, Excel, Google Sheets, or your CRM.

### What does LawyerLegion Attorney Directory Scraper do?

LawyerLegion Attorney Directory Scraper collects public attorney information from `lawyers.lawyerlegion.com`.

It can start from a Lawyer Legion directory URL such as a state, county, or practice-area page.

It follows directory pagination automatically until it reaches your requested limit.

It can also process individual public attorney profile URLs.

For each attorney, it saves contact, firm, location, practice, résumé, and provenance fields when they are visible on the public page.

### Who is it for?

Legal marketers use it to build targeted outreach lists.

Recruiters use it to research attorneys by practice area and geography.

Law firms use it to monitor comparable firms and attorneys in a local market.

Sales teams use it to find publicly listed legal service businesses.

Researchers use it to compile public attorney directory data for analysis.

### Why use this actor?

✅ It is focused on Lawyer Legion, not a generic web crawler.

✅ It works with public directory URLs that are easy to copy from the site.

✅ It captures profile-level details when available.

✅ It preserves source URLs for auditability.

✅ It outputs one clean row per attorney.

### What data can you extract?

| Field | Description |
| --- | --- |
| `name` | Attorney name |
| `firmName` | Firm or organization name |
| `phone` | Public phone number |
| `website` | Public website link |
| `emailUrl` | Lawyer Legion message URL when visible |
| `profileUrl` | Lawyer Legion attorney profile URL |
| `streetAddress` | Street address |
| `locality` | City |
| `region` | State or region |
| `postalCode` | ZIP/postal code |
| `latitude` | Latitude when embedded in directory markup |
| `longitude` | Longitude when embedded in directory markup |
| `practiceAreas` | Practice areas from the profile |
| `barAdmissions` | Admissions or jurisdictions when visible |
| `boardCertifications` | Board certification data when visible |
| `education` | Education résumé entries |
| `bio` | Public biography or profile description |
| `imageUrl` | Attorney image URL |
| `directoryUrl` | Directory page where the record was found |
| `sourceUrl` | Page used as the source for the saved record |
| `pageNumber` | Directory pagination page number |
| `scrapedAt` | Timestamp when the item was saved |

### How much does it cost to scrape Lawyer Legion attorneys?

The actor uses pay-per-event pricing.

There is a small start fee for each run.

There is a per-attorney result fee for each saved attorney record.

The exact price shown on the Apify Store page is authoritative.

Use a low `maxItems` value for your first test run.

Scale up after you confirm the output matches your workflow.

### How to scrape Lawyer Legion

1. Open Lawyer Legion in your browser.

2. Search by state, county, city, or practice area.

3. Copy the public directory URL.

4. Paste it into `startUrls`.

5. Set `maxItems`.

6. Keep `includeProfileDetails` enabled for richer profile data.

7. Run the actor.

8. Export the dataset.

### Input configuration

#### `startUrls`

Use Lawyer Legion directory URLs or attorney profile URLs.

Example:

```json
[
  {
    "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"
  }
]
````

#### `maxItems`

Maximum attorney records to save.

Set this low for trial runs.

Increase it for full directory exports.

#### `includeProfileDetails`

When enabled, the actor visits each attorney profile page.

This improves biography, practice area, education, admission, and certification coverage.

Disable it only when you need faster directory-only extraction.

#### `maxConcurrency`

Reserved for compatibility and future tuning.

The current implementation uses polite sequential requests.

### Example input

```json
{
  "startUrls": [
    {
      "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"
    }
  ],
  "maxItems": 10,
  "includeProfileDetails": true,
  "maxConcurrency": 1
}
```

### Example output

```json
{
  "name": "Example Attorney",
  "firmName": "Example Law Firm",
  "phone": "310-555-1234",
  "website": "https://example-law.com",
  "profileUrl": "https://lawyers.lawyerlegion.com/california/example-attorney-123",
  "locality": "Los Angeles",
  "region": "CA",
  "practiceAreas": ["Personal Injury"],
  "education": ["Example Law School", "J.D."],
  "sourceUrl": "https://lawyers.lawyerlegion.com/california/example-attorney-123",
  "scrapedAt": "2026-01-01T00:00:00.000Z"
}
```

### Output formats

You can download results as JSON.

You can download results as CSV.

You can download results as Excel.

You can connect the dataset to integrations.

You can access results through the Apify API.

### Tips for best results

Use specific Lawyer Legion URLs.

Practice-area and county pages usually produce more targeted leads.

Keep profile details enabled when data completeness matters.

Use `maxItems` to control run size.

Review a small sample before running a large export.

### Common use cases

Build attorney prospecting lists.

Research personal injury attorneys in a county.

Compare law firm coverage across markets.

Find attorneys associated with specific practice areas.

Enrich legal CRM records with public profile URLs.

Monitor public directory visibility for a law firm.

### Integrations

Send results to Google Sheets for review.

Export CSV into HubSpot, Salesforce, Pipedrive, or Airtable.

Use webhooks to trigger enrichment workflows after a run finishes.

Use the Apify API to pull records into your internal database.

Connect the actor to Make, Zapier, or n8n for automated lead workflows.

### 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/lawyerlegion-attorney-directory-scraper').call({
  startUrls: [{ url: 'https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury' }],
  maxItems: 10,
  includeProfileDetails: true
});
console.log(run.defaultDatasetId);
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient('MY-APIFY-TOKEN')
run = client.actor('automation-lab/lawyerlegion-attorney-directory-scraper').call(run_input={
    'startUrls': [{'url': 'https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury'}],
    'maxItems': 10,
    'includeProfileDetails': True,
})
print(run['defaultDatasetId'])
```

#### cURL

```bash
curl -X POST "https://api.apify.com/v2/acts/automation-lab~lawyerlegion-attorney-directory-scraper/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"startUrls":[{"url":"https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"}],"maxItems":10,"includeProfileDetails":true}'
```

### MCP usage

Use this actor from MCP-compatible tools through Apify MCP.

Claude Code URL:

`https://mcp.apify.com/?tools=automation-lab/lawyerlegion-attorney-directory-scraper`

Add it in Claude Code:

```bash
claude mcp add apify-lawyerlegion "https://mcp.apify.com/?tools=automation-lab/lawyerlegion-attorney-directory-scraper"
```

Claude Desktop JSON config:

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

Claude Desktop can use the same Apify MCP server URL.

Example prompts:

- "Run the LawyerLegion scraper for this Los Angeles personal injury URL and summarize the firms."
- "Export the first 25 attorneys from this Lawyer Legion directory to CSV."
- "Find attorney profiles with websites and phone numbers from this directory page."

### Data quality notes

The actor extracts public data visible on Lawyer Legion pages.

Some attorneys may not publish a phone number.

Some profiles may not include education or admissions.

Directory snippets may be less complete than profile pages.

The `sourceUrl` field shows which page supplied the final record.

### Legality and responsible use

This actor is designed for public web pages.

Always respect applicable laws and platform terms.

Do not use scraped data for spam, harassment, or prohibited profiling.

Review your local rules before contacting attorneys.

Use reasonable run sizes.

### FAQ

#### Can I scrape an individual attorney profile?

Yes. Paste a public Lawyer Legion profile URL into `startUrls`.

#### Does this actor require a Lawyer Legion account?

No. It is designed for public directory and profile pages.

### Troubleshooting

#### Why did I get fewer results than `maxItems`?

The selected directory may contain fewer public records than your limit.

The actor stops when pagination ends.

#### Why are some fields empty?

Lawyer Legion profiles vary.

If the public page does not show education, admissions, or website data, the corresponding output field can be empty.

### Related scrapers

Explore related legal and lead-generation actors from Automation Lab:

- https://apify.com/automation-lab/lawyer-com-scraper

- https://apify.com/automation-lab/google-maps-lead-finder

- https://apify.com/automation-lab/business-directory-scraper

### Support

If the site layout changes, open an issue from the actor page.

Include your run ID and input.

A reproducible example helps us fix extraction issues quickly.

### Changelog

Initial version extracts public Lawyer Legion directory and profile data.

### Development notes

The actor uses HTTP requests and Cheerio parsing.

It does not require a browser for the current public pages.

It uses a conservative request pattern.

It charges one `result` event per saved attorney record.

# Actor input Schema

## `startUrls` (type: `array`):

Lawyer Legion directory pages (paginated automatically) or individual attorney profile URLs.

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

Maximum number of attorney records to save across all start URLs.

## `includeProfileDetails` (type: `boolean`):

Visit each attorney profile for richer bio, practice areas, education, admissions, and certifications. Disable for faster directory-only runs.

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

Reserved for compatibility; the actor currently uses polite sequential requests to avoid stressing Lawyer Legion.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"
    }
  ],
  "maxItems": 10,
  "includeProfileDetails": true,
  "maxConcurrency": 1
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"
        }
    ],
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/lawyerlegion-attorney-directory-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 = {
    "startUrls": [{ "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury" }],
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/lawyerlegion-attorney-directory-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 '{
  "startUrls": [
    {
      "url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"
    }
  ],
  "maxItems": 10
}' |
apify call automation-lab/lawyerlegion-attorney-directory-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "LawyerLegion Attorney Directory Scraper",
        "description": "⚖️ Extract public Lawyer Legion attorney profiles, firm contacts, practice areas, education, and bar data for legal lead workflows.",
        "version": "0.1",
        "x-build-id": "vUhopWYjqGywFvfu2"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~lawyerlegion-attorney-directory-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-lawyerlegion-attorney-directory-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/automation-lab~lawyerlegion-attorney-directory-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-lawyerlegion-attorney-directory-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/automation-lab~lawyerlegion-attorney-directory-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-lawyerlegion-attorney-directory-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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Lawyer Legion directory pages (paginated automatically) or individual attorney profile URLs.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Maximum attorneys",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of attorney records to save across all start URLs.",
                        "default": 25
                    },
                    "includeProfileDetails": {
                        "title": "Fetch profile details",
                        "type": "boolean",
                        "description": "Visit each attorney profile for richer bio, practice areas, education, admissions, and certifications. Disable for faster directory-only runs.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Maximum concurrency",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Reserved for compatibility; the actor currently uses polite sequential requests to avoid stressing Lawyer Legion.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
