# Dentists Google Maps Scraper (`mukeshrana90/dentists-google-maps-scraper`) Actor

Scrape dentists and dental practices from Google Maps with email, social, specialties, payment options, insurances accepted, languages spoken, services list, review sentiment, online-booking / new-patient-promo detection, metro area classification, and DSO/practice-type classification.

- **URL**: https://apify.com/mukeshrana90/dentists-google-maps-scraper.md
- **Developed by:** [Mukesh Kumar](https://apify.com/mukeshrana90) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## Dentists Google Maps Scraper

Scrape **dentists and dental practices** from Google Maps with deep enrichment for dental-vertical lead generation — emails, social media, specialties, payment options, **insurances accepted**, languages spoken, services list, review sentiment, online-booking detection, new-patient promos, metro classification, and DSO/practice-type categorization.

35+ fields per record. Pay-per-event pricing — pay only for the enrichments you turn on.

### What you get

For every dentist / dental practice matched on Google Maps:

#### Base data (always included)
- Name, Google Maps category, sub-category tags
- Full parsed address (street, city, state, country, postal code)
- Latitude / longitude, place ID, direct Maps URL
- Phone, website
- Rating, review count, hours, is-open-now

#### Optional enrichments

| Toggle | Adds |
|---|---|
| **Extract emails** | Best contact email from the practice website. Scoring prefers `appointments@`, `scheduling@`, `frontdesk@`, `office@`, `info@`, `contact@`. Sentry / Wix / no-reply / placeholder addresses are filtered out. |
| **Extract social media links** | Instagram, Facebook, LinkedIn, X/Twitter — with widget-brand filtering (no Bolt, no copyright-year false positives, no `/p/` post URLs). |
| **Dentist enrichment** | `specialties` (12 categories: general / ortho / oral surgeon / endo / perio / pediatric / cosmetic / implant / emergency / sedation / TMJ / prosthodontist), `paymentOptions` (insurance accepted / in-network / financing / CareCredit / Cherry / in-house plan / cash discount / free new patient exam), **`insurancesAccepted`** (Delta Dental, Aetna, Cigna, MetLife, Humana, BCBS, UnitedHealthcare, Guardian, Principal, Anthem, GEHA, Ameritas, Sun Life, TRICARE, Medicaid, Medicare + 4 more), `languagesSpoken` (20+ languages with normalisation), `servicesOffered` (20 dental procedures — cleanings, fillings, crowns, root canals, implants, dentures, veneers, whitening, Invisalign, braces, periodontal, TMJ, sleep apnea, sedation, emergency, pediatric, cosmetic), `reviewSentiment` (keyword-based scoring with dental-tuned dictionary; themes: pain management, staff & bedside manner, wait time, cleanliness, value & billing, expertise, kid-friendliness). |
| **Niche classification** | `hasOnlineBooking` + platform (NexHealth, Solutionreach, Weave, Yapi, Lighthouse 360, Demandforce, PatientPop, Zocdoc, Calendly, Acuity), `hasNewPatientPromo` + evidence + URL ("$99 new patient exam", "free X-rays", "complimentary consultation"), `isMetroArea` + `metroName` + `metroTier` (coordinate-based, 30+ global metros), `practiceType` (solo / group / **dso**) with `dsoChainName` (Aspen Dental, Heartland Dental, Pacific Dental Services, Smile Brands, Comfort Dental, Gentle Dental, Western Dental, and 12+ more chains). |

### Use cases

- **Dental SaaS** — leads for practice-management / scheduling / payments software, segmented by what they're already using
- **Insurance carriers / DPPOs** — find practices accepting (or not accepting) specific networks
- **DSO acquirers** — flag independent practices vs corporate chains for M&A pipeline
- **Dental supply distributors** — segment by practice type and size
- **Marketing agencies** — bulk-enrich practice contact details for outbound
- **Translation services** — find practices claiming specific patient languages
- **CRM enrichment** — refresh existing dental rosters with current contact + insurance data

### Input

```json
{
  "searchTerms": ["dentist", "orthodontist"],
  "locations": ["New York, USA"],
  "maxResults": 50,
  "minRating": 0,
  "enrichEmails": true,
  "enrichSocials": true,
  "enrichDentist": true,
  "enrichDentistNiche": true,
  "proxyConfig": { "useApifyProxy": true }
}
````

| Field | Type | Default | Description |
|---|---|---|---|
| `searchTerms` | string\[] | `["dentist"]` | Search queries |
| `locations` | string\[] | `["New York, USA"]` | Cities, regions, countries |
| `maxResults` | int | `50` | Total practices across all searches (1–500) |
| `minRating` | number | `0` | Filter places below this Google rating |
| `enrichEmails` | bool | `false` | Visit practice website, extract best contact email |
| `enrichSocials` | bool | `false` | Extract Instagram / Facebook / LinkedIn / X |
| `enrichDentist` | bool | `false` | Specialties, payment options, insurances, languages, services, sentiment |
| `enrichDentistNiche` | bool | `false` | Booking platform, new-patient promo, metro, DSO/practice type |
| `proxyConfig` | object | `{ useApifyProxy: true }` | Residential recommended for high volume |

### Sample output

```json
{
  "name": "Smile Studio NYC",
  "category": "Dentist",
  "specialties": ["General Dentist", "Cosmetic Dentist", "Implant Dentist"],
  "fullAddress": "120 W 45th St #2200, New York, NY 10036, United States",
  "city": "New York",
  "state": "NY",
  "latitude": 40.7560,
  "longitude": -73.9831,
  "phone": "+12125551234",
  "website": "https://smilestudionyc.com/",
  "email": "appointments@smilestudionyc.com",
  "instagram": "https://instagram.com/smilestudionyc",
  "paymentOptions": ["insurance_accepted", "in_network", "care_credit", "free_new_patient_exam"],
  "insurancesAccepted": ["Delta Dental", "Aetna", "Cigna", "MetLife", "UnitedHealthcare"],
  "languagesSpoken": ["Spanish", "Mandarin"],
  "servicesOffered": [
    "Cleanings & Exams", "Fillings", "Crowns", "Root Canals",
    "Dental Implants", "Veneers", "Teeth Whitening",
    "Invisalign / Aligners", "Cosmetic Dentistry"
  ],
  "reviewSentiment": {
    "label": "Positive",
    "score": 92,
    "topThemes": ["painManagement", "staffAndBedside", "expertise"],
    "reviewsAnalysed": 10,
    "avgRating": 4.9
  },
  "hasOnlineBooking": true,
  "bookingPlatform": "nexhealth.com",
  "bookingUrl": "https://nexhealth.com/appointments/smilestudionyc",
  "hasNewPatientPromo": true,
  "newPatientPromoEvidence": "free new patient exam",
  "isMetroArea": true,
  "metroName": "New York Metro",
  "metroTier": 1,
  "practiceType": "solo",
  "practiceTypeLabel": "Solo Practitioner",
  "dsoChainName": null,
  "rating": 4.9,
  "reviewCount": 412
}
```

### Pricing

Pay-per-event:

| Event | Triggers | Price |
|---|---|---:|
| `apify-actor-start` | Once per run | $0.00005 |
| `apify-default-dataset-item` | Per result | $0.005 |
| `email-enrichment` | Per result if `enrichEmails` true | $0.005 |
| `social-enrichment` | Per result if `enrichSocials` true | $0.002 |
| `dentist-enrichment` | Per result if `enrichDentist` true | $0.013 |
| `niche-enrichment` | Per result if `enrichDentistNiche` true | $0.005 |

Indicative totals: **$5 / 1000** base, **$30 / 1000** with all four enrichments enabled.

### Notes & limitations

- Insurance / payment detection is keyword-based on the practice website. False negatives are common when the website doesn't list carriers explicitly.
- DSO classification matches the most common North-American chains. Independents misclassified as "group" if the firm uses generic group naming.
- Sentiment analysis is keyword-based (no LLM cost). Themes are coarse but useful for segmentation.
- Google Maps occasionally widens searches beyond the location keyword — expect some adjacent-area results.

# Actor input Schema

## `searchTerms` (type: `array`):

Dental specialties / search queries (e.g. dentist, orthodontist, oral surgeon, pediatric dentist, cosmetic dentist, dental implants)

## `locations` (type: `array`):

Cities, regions, or countries to search in (e.g. New York, USA or London, UK)

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

Maximum number of practices to scrape in total across all search term + location combinations

## `minRating` (type: `number`):

Only include practices with this Google rating or above (0 = no filter)

## `enrichEmails` (type: `boolean`):

Visit the practice website and extract the best contact email (homepage + /contact fallback). Prefers appointments@ / scheduling@ / frontdesk@ over generic addresses.

## `enrichSocials` (type: `boolean`):

Extract Instagram, Facebook, LinkedIn, and X/Twitter profile links from the practice website

## `enrichDentist` (type: `boolean`):

Extract specialties (general / ortho / oral surgeon / endo / perio / pediatric / cosmetic), payment options, insurances accepted (Delta Dental, Aetna, Cigna, etc.), languages spoken, services list, and review sentiment analysis

## `enrichDentistNiche` (type: `boolean`):

Detect online booking (NexHealth, Weave, Solutionreach, Calendly), new-patient promos ($99 exam / free X-rays / free consult), metro area, and practice type (solo / group / DSO chain like Aspen Dental, Heartland)

## `proxyConfig` (type: `object`):

Residential proxies recommended for high-volume runs to avoid Google Maps blocks

## Actor input object example

```json
{
  "searchTerms": [
    "dentist",
    "orthodontist"
  ],
  "locations": [
    "New York, USA"
  ],
  "maxResults": 20,
  "minRating": 0,
  "enrichEmails": false,
  "enrichSocials": false,
  "enrichDentist": false,
  "enrichDentistNiche": false,
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `defaultDataset` (type: `string`):

Dataset containing scraped dentists / dental practices with 35+ fields including contact info, social media, specialties, payment options, insurances accepted, languages spoken, services list, review sentiment, online booking detection, new-patient promos, metro classification, and DSO/practice-type classification.

# 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 = {
    "searchTerms": [
        "dentist",
        "orthodontist"
    ],
    "locations": [
        "New York, USA"
    ],
    "maxResults": 20,
    "minRating": 0
};

// Run the Actor and wait for it to finish
const run = await client.actor("mukeshrana90/dentists-google-maps-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 = {
    "searchTerms": [
        "dentist",
        "orthodontist",
    ],
    "locations": ["New York, USA"],
    "maxResults": 20,
    "minRating": 0,
}

# Run the Actor and wait for it to finish
run = client.actor("mukeshrana90/dentists-google-maps-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 '{
  "searchTerms": [
    "dentist",
    "orthodontist"
  ],
  "locations": [
    "New York, USA"
  ],
  "maxResults": 20,
  "minRating": 0
}' |
apify call mukeshrana90/dentists-google-maps-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Dentists Google Maps Scraper",
        "description": "Scrape dentists and dental practices from Google Maps with email, social, specialties, payment options, insurances accepted, languages spoken, services list, review sentiment, online-booking / new-patient-promo detection, metro area classification, and DSO/practice-type classification.",
        "version": "1.0",
        "x-build-id": "rAk94HfikIWPSiIS1"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/mukeshrana90~dentists-google-maps-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-mukeshrana90-dentists-google-maps-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/mukeshrana90~dentists-google-maps-scraper/runs": {
            "post": {
                "operationId": "runs-sync-mukeshrana90-dentists-google-maps-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/mukeshrana90~dentists-google-maps-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-mukeshrana90-dentists-google-maps-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": {
                    "searchTerms": {
                        "title": "Search terms",
                        "type": "array",
                        "description": "Dental specialties / search queries (e.g. dentist, orthodontist, oral surgeon, pediatric dentist, cosmetic dentist, dental implants)",
                        "default": [
                            "dentist"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Cities, regions, or countries to search in (e.g. New York, USA or London, UK)",
                        "default": [
                            "New York, USA"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max results per search",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of practices to scrape in total across all search term + location combinations",
                        "default": 50
                    },
                    "minRating": {
                        "title": "Minimum rating filter",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "number",
                        "description": "Only include practices with this Google rating or above (0 = no filter)",
                        "default": 0
                    },
                    "enrichEmails": {
                        "title": "Extract emails",
                        "type": "boolean",
                        "description": "Visit the practice website and extract the best contact email (homepage + /contact fallback). Prefers appointments@ / scheduling@ / frontdesk@ over generic addresses.",
                        "default": false
                    },
                    "enrichSocials": {
                        "title": "Extract social media links",
                        "type": "boolean",
                        "description": "Extract Instagram, Facebook, LinkedIn, and X/Twitter profile links from the practice website",
                        "default": false
                    },
                    "enrichDentist": {
                        "title": "Dentist enrichment",
                        "type": "boolean",
                        "description": "Extract specialties (general / ortho / oral surgeon / endo / perio / pediatric / cosmetic), payment options, insurances accepted (Delta Dental, Aetna, Cigna, etc.), languages spoken, services list, and review sentiment analysis",
                        "default": false
                    },
                    "enrichDentistNiche": {
                        "title": "Niche classification",
                        "type": "boolean",
                        "description": "Detect online booking (NexHealth, Weave, Solutionreach, Calendly), new-patient promos ($99 exam / free X-rays / free consult), metro area, and practice type (solo / group / DSO chain like Aspen Dental, Heartland)",
                        "default": false
                    },
                    "proxyConfig": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential proxies recommended for high-volume runs to avoid Google Maps blocks",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
