# 🏢 Yellow Pages US Scraper (`api-empire/yellow-pages-us-scraper`) Actor

- **URL**: https://apify.com/api-empire/yellow-pages-us-scraper.md
- **Developed by:** [API Empire](https://apify.com/api-empire) (community)
- **Categories:** Automation, Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## 🏢 Yellow Pages US Scraper

Scrape **[Yellow Pages US](https://www.yellowpages.com/)** business listings into clean, structured data — business name, phone, full address, website, star rating, review count, review snippets, photos and categories — from a simple **search term + location** or from **bulk search URLs**.

> ⚡ Streams results into the dataset **as each listing is parsed** — no waiting until the run ends for partial output. Refresh the run page and watch rows appear live.

---

### ✨ Why choose this scraper?

- 🧠 **Smart proxy auto-escalation** — starts **direct** (no proxy, cheapest and fastest), then automatically falls back to a **datacenter** proxy, then a **US residential** proxy if Yellow Pages pushes back. Once on residential it stays there. You never have to think about it.
- 🔎 **Search OR bulk URLs** — type `Dentist` + `New York` and hit Start, or paste a list of Yellow Pages search URLs. Both work; mix them freely.
- 📍 **Location auto-correct** — loose input like `austin tx` is resolved to the Yellow Pages canonical form (`Austin, TX`) via their own autosuggest service.
- 🧱 **Browser TLS impersonation** — every request carries a genuine Chrome/Edge fingerprint (via `curl_cffi`), so Yellow Pages serves real HTML instead of a bot page — without the cost of a headless browser.
- 📄 **Automatic pagination** — follows the "Next" link to the last page of every search.
- 📊 **Sectioned dataset tabs** — Overview, Contact, Reviews and Media views built in.
- 💳 **Pay per event** — you pay only for listings actually delivered.

---

### 🔑 Key Features

| | Field extracted |
|---|---|
| 📢 | Paid-ad flag (`isAd`) — sponsored vs organic result |
| 🏢 | Business name |
| 📍 | Street address |
| 📞 | Phone number |
| 🌐 | Business website |
| ⭐ | Star rating (1–5) |
| 🗳️ | Review count |
| 💬 | Customer review snippet |
| ℹ️ | "From Business" description snippet |
| 🖼️ | Business photo (full-size URL) |
| 🏷️ | Category list |
| 🔗 | Yellow Pages profile URL |

---

### 📥 Input

| Field | Type | Required | Default | Description |
|-------|------|----------|---------|-------------|
| `search` | string | ❌\* | `Dentist` | Business type, category or company name |
| `location` | string | ❌\* | `New York` | US city, `City, ST`, or ZIP code |
| `startUrls` | array | ❌\* | – | Bulk Yellow Pages search-result URLs |
| `maxItems` | integer | ❌ | `50` | Cap on total listings (`0` = unlimited) |
| `debugMode` | boolean | ❌ | `false` | Verbose debug logging in the run log (troubleshooting) |
| `requestDelay` | number | ❌ | `1.0` | Base seconds between requests (jitter added) |
| `proxyConfiguration` | object | ❌ | direct | Proxy override — defaults to no proxy |

\* Provide **either** `search` + `location` **or** `startUrls` (or both).

#### Example input

```json
{
  "search": "Dentist",
  "location": "New York, NY",
  "maxItems": 50,
  "requestDelay": 1.0,
  "proxyConfiguration": { "useApifyProxy": false }
}
````

#### Bulk URL example

```json
{
  "startUrls": [
    "https://www.yellowpages.com/search?search_terms=plumber&geo_location_terms=New+York%2C+NY",
    "https://www.yellowpages.com/search?search_terms=coffee&geo_location_terms=Austin%2C+TX"
  ],
  "maxItems": 200
}
```

***

### 📤 Output

Each dataset row is one business listing. Empty fields are omitted, exactly like the reference output.

```json
{
  "isAd": false,
  "url": "https://www.yellowpages.com/new-york-ny/mip/dr-kara-mason-dmd-5721648",
  "name": "Dr. Kara Mason, DMD",
  "address": "30 E 60th St Rm 503, New York, NY 10022",
  "phone": "(212) 355-2195",
  "website": "http://www.gentledentalnyc.com",
  "rating": 5,
  "ratingCount": 175,
  "reviewSnippet": "Extremely knowledgeable of craft with sincere care for her patients.\"",
  "image": "https://i4.ypcdn.com/blob/80cd8b97ee48d0b7715eacdc0801d77c44cc978b",
  "categories": ["Dentists", "Oral & Maxillofacial Surgery"]
}
```

| Field | Type | Description |
|-------|------|-------------|
| `isAd` | boolean | `true` for paid/sponsored listings, `false` for organic |
| `url` | string | Yellow Pages business profile URL |
| `name` | string | Business name |
| `address` | string | Street address |
| `phone` | string | Phone number |
| `website` | string | Business website (when listed) |
| `rating` | number | Star rating, 1–5 (when rated) |
| `ratingCount` | integer | Number of reviews (when rated) |
| `reviewSnippet` | string | A sample customer review (when present) |
| `infoSnippet` | string | "From Business" description (when present) |
| `image` | string | Business photo URL (when present) |
| `categories` | array | Yellow Pages category labels |

The dataset has four ready-made views — **📋 Overview**, **📞 Contact**, **⭐ Ratings & Reviews** and **🖼️ Media** — so you can focus on one section at a time.

***

### 🚀 How to Use (Apify Console)

1. Log in at [console.apify.com](https://console.apify.com) → **Actors**.
2. Open **Yellow Pages US Scraper**.
3. Enter a 🔎 **Search term** and 📍 **Location** — or paste 🌐 **URLs**.
4. Set 🔢 **Maximum listings** (default 50).
5. Click **Start**.
6. Watch listings stream into the run log and dataset in real time.
7. When the run finishes, open the **Output** tab.
8. Export to **JSON / CSV / Excel** or pull via API.

***

### 🤖 Use via API

```bash
curl -X POST "https://api.apify.com/v2/acts/YOUR~yellow-pages-us-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
       "search": "Plumber",
       "location": "Austin, TX",
       "maxItems": 50
     }'
```

***

### 🛡️ How blocking is handled

Yellow Pages occasionally rate-limits aggressive traffic. This actor handles it automatically:

1. **Direct** — requests go straight to Yellow Pages (no proxy cost).
2. On a block → **datacenter proxy**.
3. On another block → **US residential proxy** (sticky from here on).
4. Residential is retried up to **3 times** with a fresh IP and a cooldown.

Every escalation is logged clearly in the run log, e.g.
`🔄 Yellow Pages blocked the request on DIRECT — switching to DATACENTER proxy.`

***

### 💡 Best Use Cases

- 📇 Lead generation — build B2B contact lists by category and city.
- 📊 Local market research — map competitors in any US metro.
- 🗺️ Local SEO audits — track ratings, reviews and categories.
- 🤝 Sales prospecting — phone/website lists for outreach.

***

### 💳 Pricing

This actor uses the **pay-per-event** model. You are charged **once per business listing** successfully delivered to the dataset (`listing-scraped`). Runs that return no data cost nothing beyond the standard run start. The actor stops cleanly when a configured spend limit is reached.

***

### ❓ FAQ

**Do I need a proxy?** No. The actor runs direct by default and only turns proxies on if Yellow Pages blocks it — and it does that for you.

**Can I scrape multiple cities at once?** Yes — use **Bulk URL mode** and paste one search URL per city.

**Why are some fields missing on a row?** Yellow Pages does not list a phone, website, rating or photo for every business. Empty fields are omitted rather than returned as `null`.

**How many results per search?** Yellow Pages caps each search at roughly 30 pages. Use a more specific location to surface different businesses.

**Does it scrape individual business detail pages?** No — it collects everything from the search-result cards, which is fast and covers all the fields above.

***

### 📨 Support & Feedback

Found a bug or need an extra field? Contact **dev.scraperengine@gmail.com** or open an issue on the actor's Apify page.

***

### ⚖️ Legal

This scraper collects only **publicly available** data from Yellow Pages. You are responsible for using the data in compliance with applicable laws (GDPR, CCPA, anti-spam regulations) and the Yellow Pages Terms of Service.

# Actor input Schema

## `search` (type: `string`):

What to look for on Yellow Pages — a business type, category or company name. Examples: `Dentist`, `Plumber`, `Coffee Shop`, `Law Firm`. Combine it with the Location field below. Leave both empty if you are pasting Start URLs instead.

## `location` (type: `string`):

Where to search — a US city, `City, ST`, or ZIP code. Examples: `New York`, `Austin, TX`, `90210`. Loose input is auto-corrected to the Yellow Pages canonical form via their location autosuggest.

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

Optional. Yellow Pages search-result URLs to crawl directly — e.g. `https://www.yellowpages.com/search?search_terms=plumber&geo_location_terms=New+York%2C+NY`. Use this instead of (or alongside) the Search + Location fields above. Pagination is followed automatically for every URL.

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

Cap the total number of business listings returned across all searches. Set to `0` for unlimited (Yellow Pages itself caps each search to roughly 30 pages).

## `debugMode` (type: `boolean`):

Turn on verbose debug logging — every page fetch, HTTP status, proxy escalation and pagination step is written to the run log. Use it to troubleshoot empty results or blocks; leave it off for normal runs.

## `requestDelay` (type: `number`):

Base pause between page requests. A random jitter is added on top to look human and stay under Yellow Pages' rate limits. Raise it if you see blocks; lower it for speed.

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

By default the scraper sends requests **direct (no proxy)** and only escalates to a **datacenter** proxy — then a US **residential** proxy — if Yellow Pages blocks a request. Once it escalates to residential it stays there for the rest of the run. Leave this as-is for the default behaviour, or expand it to force Apify Proxy on from the start.

## Actor input object example

```json
{
  "search": "Dentist",
  "location": "New York, NY",
  "startUrls": [],
  "maxItems": 10,
  "debugMode": false,
  "requestDelay": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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": "Dentist",
    "location": "New York",
    "startUrls": [],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("api-empire/yellow-pages-us-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": "Dentist",
    "location": "New York",
    "startUrls": [],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("api-empire/yellow-pages-us-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": "Dentist",
  "location": "New York",
  "startUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call api-empire/yellow-pages-us-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=api-empire/yellow-pages-us-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🏢 Yellow Pages US Scraper",
        "description": null,
        "version": "1.0",
        "x-build-id": "AWCOSTqndhVCSxWIi"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/api-empire~yellow-pages-us-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-api-empire-yellow-pages-us-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/api-empire~yellow-pages-us-scraper/runs": {
            "post": {
                "operationId": "runs-sync-api-empire-yellow-pages-us-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/api-empire~yellow-pages-us-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-api-empire-yellow-pages-us-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": {
                    "search": {
                        "title": "Search",
                        "type": "string",
                        "description": "What to look for on Yellow Pages — a business type, category or company name. Examples: `Dentist`, `Plumber`, `Coffee Shop`, `Law Firm`. Combine it with the Location field below. Leave both empty if you are pasting Start URLs instead."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Where to search — a US city, `City, ST`, or ZIP code. Examples: `New York`, `Austin, TX`, `90210`. Loose input is auto-corrected to the Yellow Pages canonical form via their location autosuggest."
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional. Yellow Pages search-result URLs to crawl directly — e.g. `https://www.yellowpages.com/search?search_terms=plumber&geo_location_terms=New+York%2C+NY`. Use this instead of (or alongside) the Search + Location fields above. Pagination is followed automatically for every URL.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Cap the total number of business listings returned across all searches. Set to `0` for unlimited (Yellow Pages itself caps each search to roughly 30 pages).",
                        "default": 10
                    },
                    "debugMode": {
                        "title": "Debug Mode",
                        "type": "boolean",
                        "description": "Turn on verbose debug logging — every page fetch, HTTP status, proxy escalation and pagination step is written to the run log. Use it to troubleshoot empty results or blocks; leave it off for normal runs.",
                        "default": false
                    },
                    "requestDelay": {
                        "title": "Delay between requests (seconds)",
                        "minimum": 0,
                        "maximum": 15,
                        "type": "number",
                        "description": "Base pause between page requests. A random jitter is added on top to look human and stay under Yellow Pages' rate limits. Raise it if you see blocks; lower it for speed.",
                        "default": 1
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "By default the scraper sends requests **direct (no proxy)** and only escalates to a **datacenter** proxy — then a US **residential** proxy — if Yellow Pages blocks a request. Once it escalates to residential it stays there for the rest of the run. Leave this as-is for the default behaviour, or expand it to force Apify Proxy on from the start.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
