# SANDBOX 10M+ GMAPS (`xmiso_scrapers/sandbox-10m-gmaps`) Actor

DO NOT USE. Test Actor for prepared features

- **URL**: https://apify.com/xmiso\_scrapers/sandbox-10m-gmaps.md
- **Developed by:** [Miso](https://apify.com/xmiso_scrapers) (community)
- **Categories:** Lead generation
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 1,000 business lead with emails

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

##  Business Leads With Emails (From Google Maps)

UPDATE 01.12.2025

--New Feature : Now you can retrieve ALL businesses from all categories at once within some area, just enter GPS coordinates and area size.
-- Added 1000+ more categories, totatal number of categories is 2000+

UPDATE 03.10.2025
--Added AE, AR, BE, BR, ES, IE, KR, MX, NL, PL, SE, SE, TH, TR...

UPDATE 24.09.2025
--Added FR,IT,IN,JP...

> **Update 03.10.2025:**  
> Currently **9.000,000+** unique businesses with emails in **1000+** categories
### Overview

The **Business Leads Scraper** is a high-volume, continuously updated tool that extracts business leads directly from Google Maps and found websites, 
including **emails and social links**. Easily search by business category, keyword, and US state. 
It’s designed as an affordable Apollo.io alternative for anyone needing fresh business contact data.


---

### Features

- **9+ Million  Leads**: Scrape from a database of over 9 million unique US business contacts with emails.
- **Category or Keyword Search**: Choose from 1500+ business categories or search for any keyword (e.g., "teeth whitening", "contractor").
- **US State Filtering**: Target leads nationwide or by specific US state.
- **Social Links Included**: Output includes Facebook, Instagram, and LinkedIn when available.
- **Review Data**: Get business reviews count and average score.
- **Flexible Output**: Download as CSV, Excel, or JSON—ready for CRM or marketing tools.
- **Up to 100,000 Leads Per Run**: Adjustable `max_results` setting for large or small lead lists.
- **Continuously Updated**: New leads added and verified daily.

---

### Input Options

| Field         | Type      | Description                                                                                                      | Example           |
|---------------|-----------|------------------------------------------------------------------------------------------------------------------|-------------------|
| `category`    | string    | Predefined business category to scrape (e.g., `bakery`, `dentist`). Ignored if `keyword` is set.                | `bakery`          |
| `keyword`     | string    | Custom keyword to search all Google Maps business categories. Takes priority over `category`.                    | `roofing`         |
| `state`       | string    | US state code (`CA`, `NY`, etc.) or `All` for nationwide.                                                        | `TX`              |
| `max_results` | integer   | Maximum number of results (1–100,000).                                                                            | `2000`            |

---

### Output Fields

Each lead contains:

- `name`
- `street`
- `city`
- `country`
- `country_code`
- `url`
- `phone_number`
- `email`
- `google_business_categories`
- `google_maps_url`
- `review_score`
- `reviews_number`
- `facebook`
- `instagram`
- `linkedin`

---

### Example Usage

**Example Input**

```json
{
  "category": "dentist",
  "keyword": "",
  "state": "CA",
  "max_results": 500
}

# Actor input Schema

## `category` (type: `string`):

Select the business category
## `keyword` (type: `string`):

Optional: Search for any keyword (e.g. teeth whitening, hvac) in business categories. If provided, this takes priority over category.
## `country` (type: `string`):

Choose the country for business leads. Select 'ALL' to search across all supported countries.
## `state` (type: `string`):

Filter results by US state
## `include_people` (type: `boolean`):

Add people scraped from business website - owners, decision makers etc at rate +$1/1000 rows
## `verify_emails` (type: `boolean`):

Directly verify emails - - Emails will be verified immediately at additional rate +$1/1000 rows
## `city` (type: `string`):

Optional: Filter out leads by searching for string in city field. Eg Washington or just Wash
## `lat` (type: `string`):

latitude
## `lon` (type: `string`):

longitude
## `area` (type: `integer`):

Area to look for business in
## `max_results` (type: `integer`):

Maximum number of results to retrieve

## Actor input object example

```json
{
  "category": "bakery",
  "country": "US",
  "state": "All",
  "area": 10,
  "max_results": 100
}
````

# 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 = {
    "category": "bakery",
    "keyword": "",
    "country": "US",
    "state": "All",
    "city": "",
    "area": 10,
    "max_results": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("xmiso_scrapers/sandbox-10m-gmaps").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 = {
    "category": "bakery",
    "keyword": "",
    "country": "US",
    "state": "All",
    "city": "",
    "area": 10,
    "max_results": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("xmiso_scrapers/sandbox-10m-gmaps").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 '{
  "category": "bakery",
  "keyword": "",
  "country": "US",
  "state": "All",
  "city": "",
  "area": 10,
  "max_results": 100
}' |
apify call xmiso_scrapers/sandbox-10m-gmaps --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=xmiso_scrapers/sandbox-10m-gmaps",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SANDBOX 10M+ GMAPS",
        "description": "DO NOT USE. Test Actor for prepared features",
        "version": "0.0",
        "x-build-id": "M3lKir0Z3hEEInuVF"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xmiso_scrapers~sandbox-10m-gmaps/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xmiso_scrapers-sandbox-10m-gmaps",
                "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/xmiso_scrapers~sandbox-10m-gmaps/runs": {
            "post": {
                "operationId": "runs-sync-xmiso_scrapers-sandbox-10m-gmaps",
                "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/xmiso_scrapers~sandbox-10m-gmaps/run-sync": {
            "post": {
                "operationId": "run-sync-xmiso_scrapers-sandbox-10m-gmaps",
                "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": {
                    "category": {
                        "title": "Business Category",
                        "enum": [
                            "abrasives_supplier",
                            "acai_shop",
                            "accountant",
                            "accounting_firm",
                            "acoustical_consultant",
                            "acupuncture_clinic",
                            "acupuncturist",
                            "addiction_treatment_center",
                            "administrative_attorney",
                            "adoption_agency",
                            "adult_day_care_center",
                            "adult_education_school",
                            "adult_entertainment_club",
                            "adult_entertainment_store",
                            "adult_foster_care_service",
                            "adventure_sports_center",
                            "advertising_agency",
                            "advertising_photographer",
                            "aerial_photographer",
                            "aerobics_instructor",
                            "aerospace_company",
                            "african_goods_store",
                            "african_restaurant",
                            "after_school_program",
                            "aggregate_supplier",
                            "agricultural_cooperative",
                            "agricultural_machinery_manufacturer",
                            "agricultural_organization",
                            "agricultural_production",
                            "agricultural_product_wholesaler",
                            "agricultural_service",
                            "agrochemicals_supplier",
                            "airbrushing_service",
                            "aircraft_maintenance_company",
                            "aircraft_rental_service",
                            "aircraft_supply_store",
                            "airline",
                            "airline_ticket_agency",
                            "airport",
                            "airport_shuttle_service",
                            "air_compressor_repair_service",
                            "air_compressor_supplier",
                            "air_conditioning_contractor",
                            "air_conditioning_repair_service",
                            "air_conditioning_store",
                            "air_conditioning_system_supplier",
                            "air_duct_cleaning_service",
                            "air_filter_supplier",
                            "alcoholic_beverage_wholesaler",
                            "alcoholism_treatment_program",
                            "allergist",
                            "alternative_fuel_station",
                            "alternative_medicine_practitioner",
                            "aluminium_supplier",
                            "aluminum_welder",
                            "aluminum_window",
                            "american_restaurant",
                            "amish_furniture_store",
                            "ammunition_supplier",
                            "amphitheatre",
                            "amusement_center",
                            "amusement_park",
                            "amusement_park_ride",
                            "anesthesiologist",
                            "animal_control_service",
                            "animal_hospital",
                            "animal_protection_organization",
                            "animal_rescue_service",
                            "animal_shelter",
                            "animation_studio",
                            "antique_furniture_restoration_service",
                            "antique_furniture_store",
                            "antique_store",
                            "apartment_building",
                            "apartment_complex",
                            "apartment_rental_agency",
                            "appliances_customer_service",
                            "appliance_parts_supplier",
                            "appliance_rental_service",
                            "appliance_repair_service",
                            "appliance_store",
                            "applied_behavior_analysis_therapist",
                            "appraiser",
                            "aquarium",
                            "aquarium_shop",
                            "aquatic_center",
                            "arborist_and_tree_surgeon",
                            "archery_range",
                            "archery_store",
                            "architect",
                            "architectural_designer",
                            "architecture_firm",
                            "archive",
                            "arena",
                            "army_and_navy_store",
                            "army_facility",
                            "aromatherapy_service",
                            "aromatherapy_supply_store",
                            "artist",
                            "arts_organization",
                            "art_cafe",
                            "art_center",
                            "art_dealer",
                            "art_gallery",
                            "art_museum",
                            "art_restoration_service",
                            "art_school",
                            "art_studio",
                            "art_supply_store",
                            "asbestos_testing_service",
                            "asian_fusion_restaurant",
                            "asian_grocery_store",
                            "asian_restaurant",
                            "asphalt_contractor",
                            "asphalt_mixing_plant",
                            "assisted_living_facility",
                            "astrologer",
                            "athletic_club",
                            "athletic_track",
                            "attorney_referral_service",
                            "atv_dealer",
                            "atv_rental_service",
                            "atv_repair_shop",
                            "auction_house",
                            "audiologist",
                            "audio_visual_consultant",
                            "audio_visual_equipment_rental_service",
                            "audio_visual_equipment_repair_service",
                            "audio_visual_equipment_supplier",
                            "auditor",
                            "auditorium",
                            "automation_company",
                            "automobile_storage_facility",
                            "auto_accessories_wholesaler",
                            "auto_air_conditioning_service",
                            "auto_auction",
                            "auto_bodywork_mechanic",
                            "auto_body_parts_supplier",
                            "auto_body_shop",
                            "auto_broker",
                            "auto_dent_removal_service",
                            "auto_electrical_service",
                            "auto_glass_repair_service",
                            "auto_glass_shop",
                            "auto_insurance_agency",
                            "auto_machine_shop",
                            "auto_market",
                            "auto_painting",
                            "auto_parts_manufacturer",
                            "auto_parts_market",
                            "auto_parts_store",
                            "auto_radiator_repair_service",
                            "auto_repair_shop",
                            "auto_restoration_service",
                            "auto_spring_shop",
                            "auto_sunroof_shop",
                            "auto_tag_agency",
                            "auto_tune_up_service",
                            "auto_upholsterer",
                            "auto_window_tinting_service",
                            "auto_wrecker",
                            "aviation_consultant",
                            "aviation_training_institute",
                            "awning_supplier",
                            "baby_clothing_store",
                            "baby_store",
                            "baby_swimming_school",
                            "bagel_shop",
                            "bag_shop",
                            "bail_bonds_service",
                            "bait_shop",
                            "bakery",
                            "baking_supply_store",
                            "ballet_school",
                            "balloon_artist",
                            "balloon_store",
                            "ballroom_dance_instructor",
                            "band",
                            "bank",
                            "bankruptcy_attorney",
                            "bankruptcy_service",
                            "banner_store",
                            "banquet_hall",
                            "bar",
                            "barbecue_restaurant",
                            "barber_school",
                            "barber_shop",
                            "barber_supply_store",
                            "bariatric_surgeon",
                            "bar_and_grill",
                            "baseball_club",
                            "baseball_goods_store",
                            "basketball_club",
                            "bathroom_remodeler",
                            "bathroom_supply_store",
                            "battery_store",
                            "battery_wholesaler",
                            "batting_cage_center",
                            "beach_clothing_store",
                            "beach_volleyball_court",
                            "bead_store",
                            "bearing_supplier",
                            "beautician",
                            "beauty_products_wholesaler",
                            "beauty_product_supplier",
                            "beauty_salon",
                            "beauty_school",
                            "beauty_supply_store",
                            "bedding_store",
                            "bedroom_furniture_store",
                            "bed_and_breakfast",
                            "bed_shop",
                            "beer_distributor",
                            "beer_garden",
                            "beer_hall",
                            "beer_store",
                            "beverage_distributor",
                            "bicycle_rack",
                            "bicycle_rental_service",
                            "bicycle_repair_shop",
                            "bicycle_store",
                            "billiards_supply_store",
                            "biofeedback_therapist",
                            "biotechnology_company",
                            "bird_control_service",
                            "bird_shop",
                            "bird_watching_area",
                            "birth_center",
                            "bistro",
                            "blacksmith",
                            "blast_cleaning_service",
                            "blinds_shop",
                            "blood_testing_service",
                            "blueprint_service",
                            "bmw_dealer",
                            "boarding_house",
                            "board_game_club",
                            "boating_instructor",
                            "boat_accessories_supplier",
                            "boat_builder",
                            "boat_club",
                            "boat_cover_supplier",
                            "boat_dealer",
                            "boat_ramp",
                            "boat_rental_service",
                            "boat_repair_shop",
                            "boat_storage_facility",
                            "boat_tour_agency",
                            "boat_trailer_dealer",
                            "body_piercing_shop",
                            "body_shaping_class",
                            "boiler_supplier",
                            "bookbinder",
                            "bookkeeping_service",
                            "book_publisher",
                            "book_store",
                            "boot_camp",
                            "boot_store",
                            "botanical_garden",
                            "bottled_water_supplier",
                            "bottle_and_can_redemption_center",
                            "bouncy_castle_hire",
                            "boutique",
                            "bowling_alley",
                            "bowling_supply_shop",
                            "boxing_club",
                            "boxing_gym",
                            "box_lunch_supplier",
                            "brake_shop",
                            "branding_agency",
                            "brazilian_restaurant",
                            "breakfast_restaurant",
                            "brewery",
                            "brewing_supply_store",
                            "brewpub",
                            "bricklayer",
                            "bridal_shop",
                            "brunch_restaurant",
                            "bubble_tea_store",
                            "buddhist_temple",
                            "buffet_restaurant",
                            "buick_dealer",
                            "building_consultant",
                            "building_designer",
                            "building_firm",
                            "building_inspector",
                            "building_materials_store",
                            "building_materials_supplier",
                            "building_restoration_service",
                            "burglar_alarm_store",
                            "burrito_restaurant",
                            "business_administration_service",
                            "business_attorney",
                            "business_banking_service",
                            "business_broker",
                            "business_center",
                            "business_development_service",
                            "business_management_consultant",
                            "business_networking_company",
                            "business_park",
                            "business_school",
                            "business_to_business_service",
                            "bus_charter",
                            "bus_company",
                            "bus_ticket_agency",
                            "bus_tour_agency",
                            "butcher_shop",
                            "butcher_shop_deli",
                            "cabinet_maker",
                            "cabinet_store",
                            "cabin_rental_agency",
                            "cable_company",
                            "cafe",
                            "cafeteria",
                            "cajun_restaurant",
                            "cake_shop",
                            "californian_restaurant",
                            "call_center",
                            "camera_store",
                            "camp",
                            "campground",
                            "camping_cabin",
                            "camping_store",
                            "candle_store",
                            "candy_store",
                            "cannabis_store",
                            "canoe_and_kayak_rental_service",
                            "canoe_and_kayak_store",
                            "canoe_and_kayak_tour_agency",
                            "cardiologist",
                            "cardiovascular_and_thoracic_surgeon",
                            "career_guidance_service",
                            "caribbean_restaurant",
                            "carpenter",
                            "carpet_cleaning_service",
                            "carpet_installer",
                            "carpet_store",
                            "carpet_wholesaler",
                            "carport_and_pergola_builder",
                            "carriage_ride_service",
                            "car_accessories_store",
                            "car_alarm_supplier",
                            "car_battery_store",
                            "car_dealer",
                            "car_detailing_service",
                            "car_finance_and_loan_company",
                            "car_inspection_station",
                            "car_leasing_service",
                            "car_manufacturer",
                            "car_race_track",
                            "car_rental_agency",
                            "car_repair",
                            "car_security_system_installer",
                            "car_service",
                            "car_sharing_location",
                            "car_stereo_store",
                            "car_wash",
                            "casino",
                            "casket_service",
                            "catering_food_and_drink_supplies",
                            "catering_service",
                            "catholic_school",
                            "cattle_farm",
                            "cat_boarding_service",
                            "cell_phone_accessory_store",
                            "cell_phone_store",
                            "ceramic_manufacturer",
                            "certification_agency",
                            "certified_public_accountant",
                            "chamber_of_commerce",
                            "chapel",
                            "charcuterie",
                            "charter_school",
                            "check_cashing_service",
                            "cheesesteak_restaurant",
                            "cheese_shop",
                            "chemical_manufacturer",
                            "chemical_plant",
                            "chemical_wholesaler",
                            "chevrolet_dealer",
                            "chicken_restaurant",
                            "chicken_shop",
                            "chicken_wings_restaurant",
                            "childbirth_class",
                            "childrens_book_store",
                            "childrens_clothing_store",
                            "childrens_club",
                            "childrens_furniture_store",
                            "childrens_hospital",
                            "childrens_museum",
                            "childrens_party_service",
                            "childrens_store",
                            "children_amusement_center",
                            "child_care_agency",
                            "child_health_care_centre",
                            "child_psychiatrist",
                            "child_psychologist",
                            "chimney_services",
                            "chimney_sweep",
                            "chinese_medicine_clinic",
                            "chinese_noodle_restaurant",
                            "chinese_restaurant",
                            "chinese_takeaway",
                            "chiropractor",
                            "chocolate_artisan",
                            "chocolate_shop",
                            "choir",
                            "christian_book_store",
                            "christmas_market",
                            "christmas_store",
                            "christmas_tree_farm",
                            "chrysler_dealer",
                            "cider_bar",
                            "cigar_shop",
                            "city_clerks_office",
                            "city_tax_office",
                            "civic_center",
                            "civil_engineer",
                            "civil_engineering_company",
                            "civil_law_attorney",
                            "classified_ads_newspaper_publisher",
                            "cleaners",
                            "cleaning_products_supplier",
                            "clock_repair_service",
                            "closed_circuit_television",
                            "clothes_and_fabric_manufacturer",
                            "clothing_alteration_service",
                            "clothing_store",
                            "clothing_supplier",
                            "clothing_wholesaler",
                            "club",
                            "coaching_center",
                            "cocktail_bar",
                            "coffee_machine_supplier",
                            "coffee_roasters",
                            "coffee_shop",
                            "coffee_stand",
                            "coffee_store",
                            "coffee_wholesaler",
                            "coin_dealer",
                            "cold_storage_facility",
                            "collectibles_store",
                            "colombian_restaurant",
                            "comedy_club",
                            "comic_book_store",
                            "commercial_agent",
                            "commercial_printer",
                            "commercial_real_estate_agency",
                            "commercial_real_estate_inspector",
                            "commercial_refrigerator_supplier",
                            "community_center",
                            "community_garden",
                            "community_health_center",
                            "community_school",
                            "computer_accessories_store",
                            "computer_consultant",
                            "computer_hardware_manufacturer",
                            "computer_networking_center",
                            "computer_repair_service",
                            "computer_security_service",
                            "computer_service",
                            "computer_software_store",
                            "computer_store",
                            "computer_support_and_services",
                            "computer_training_school",
                            "computer_wholesaler",
                            "concert_hall",
                            "concrete_contractor",
                            "concrete_product_supplier",
                            "condominium_complex",
                            "condominium_rental_agency",
                            "confectionery",
                            "conference_center",
                            "consignment_shop",
                            "construction_company",
                            "construction_equipment_supplier",
                            "construction_machine_dealer",
                            "construction_machine_rental_service",
                            "construction_material_wholesaler",
                            "consultant",
                            "contact_lenses_supplier",
                            "container_service",
                            "container_supplier",
                            "contractor",
                            "convenience_store",
                            "convention_center",
                            "cookie_shop",
                            "cooking_class",
                            "cooking_school",
                            "copier_repair_service",
                            "copy_shop",
                            "corporate_campus",
                            "corporate_gift_supplier",
                            "corporate_office",
                            "cosmetics_industry",
                            "cosmetics_store",
                            "cosmetic_dentist",
                            "cosmetic_products_manufacturer",
                            "cosmetic_surgeon",
                            "costume_jewelry_shop",
                            "costume_store",
                            "cottage",
                            "cottage_rental",
                            "council",
                            "counselor",
                            "countertop_contractor",
                            "countertop_store",
                            "country_club",
                            "country_food_restaurant",
                            "courier_service",
                            "court_reporter",
                            "coworking_space",
                            "crab_dish_restaurant",
                            "craft_store",
                            "crane_dealer",
                            "crane_rental_agency",
                            "crane_service",
                            "craniosacral_therapy",
                            "credit_counseling_service",
                            "credit_union",
                            "cremation_service",
                            "creole_restaurant",
                            "creperie",
                            "crime_victim_service",
                            "criminal_law_attorney",
                            "cruise_agency",
                            "crushed_stone_supplier",
                            "crypto_atm",
                            "cuban_restaurant",
                            "culinary_school",
                            "cultural_center",
                            "cupcake_shop",
                            "currency_exchange_service",
                            "curtain_store",
                            "curtain_supplier_and_maker",
                            "customs_broker",
                            "custom_home_builder",
                            "custom_label_printer",
                            "custom_tailor",
                            "custom_t_shirt_store",
                            "cutlery_store",
                            "dairy_farm",
                            "dairy_store",
                            "dairy_supplier",
                            "dance_club",
                            "dance_company",
                            "dance_hall",
                            "dance_school",
                            "dance_store",
                            "database_management_company",
                            "data_recovery_service",
                            "day_care_center",
                            "day_spa",
                            "deaf_service",
                            "debris_removal_service",
                            "decal_supplier",
                            "deck_builder",
                            "deli",
                            "delivery_chinese_restaurant",
                            "delivery_service",
                            "demolition_contractor",
                            "denim_wear_store",
                            "dental_clinic",
                            "dental_hygienist",
                            "dental_implants_periodontist",
                            "dental_implants_provider",
                            "dental_insurance_agency",
                            "dental_lab",
                            "dental_radiology",
                            "dental_school",
                            "dental_supply_store",
                            "dentist",
                            "denture_care_center",
                            "department_of_motor_vehicles",
                            "department_of_public_safety",
                            "department_of_social_services",
                            "department_store",
                            "dermatologist",
                            "design_agency",
                            "design_engineer",
                            "dessert_restaurant",
                            "dessert_shop",
                            "diabetes_center",
                            "diabetes_equipment_supplier",
                            "diabetologist",
                            "diagnostic_center",
                            "diamond_buyer",
                            "diamond_dealer",
                            "diesel_engine_dealer",
                            "diesel_engine_repair_service",
                            "diesel_fuel_supplier",
                            "dietitian",
                            "digital_printer",
                            "digital_printing_service",
                            "dim_sum_restaurant",
                            "diner",
                            "dinner_theater",
                            "direct_mail_advertising",
                            "dirt_supplier",
                            "disability_services_and_support_organization",
                            "discount_store",
                            "discount_supermarket",
                            "disc_golf_course",
                            "distillery",
                            "distribution_service",
                            "district_attorney",
                            "dive_shop",
                            "divorce_attorney",
                            "divorce_service",
                            "dj",
                            "dock_builder",
                            "doctor",
                            "dodge_dealer",
                            "dog_breeder",
                            "dog_day_care_center",
                            "dog_park",
                            "dog_trainer",
                            "dog_walker",
                            "dollar_store",
                            "domestic_abuse_treatment_center",
                            "dominican_restaurant",
                            "donations_center",
                            "donut_shop",
                            "door_manufacturer",
                            "door_shop",
                            "door_supplier",
                            "doula",
                            "do_it_yourself_store",
                            "drafting_service",
                            "drainage_service",
                            "drama_school",
                            "dressmaker",
                            "dress_and_tuxedo_rental_service",
                            "dress_shop",
                            "dried_flower_shop",
                            "drilling_contractor",
                            "drinking_water_fountain",
                            "drivers_license_office",
                            "drivers_license_training_school",
                            "driving_school",
                            "driving_test_centre",
                            "drugstore",
                            "drug_testing_service",
                            "drum_school",
                            "dryer_vent_cleaning_service",
                            "dry_cleaner",
                            "dry_ice_supplier",
                            "dry_wall_contractor",
                            "dry_wall_supply_store",
                            "dumpster_rental_service",
                            "dump_truck_dealer",
                            "dvd_store",
                            "earth_works_company",
                            "ear_piercing_service",
                            "eating_disorder_treatment_center",
                            "economic_consultant",
                            "economic_development_agency",
                            "educational_consultant",
                            "educational_institution",
                            "educational_supply_store",
                            "educational_testing_service",
                            "egg_supplier",
                            "elder_law_attorney",
                            "electrical_engineer",
                            "electrical_equipment_supplier",
                            "electrical_installation_service",
                            "electrical_repair_shop",
                            "electrical_substation",
                            "electrical_supply_store",
                            "electrical_wholesaler",
                            "electrician",
                            "electric_bicycle_store",
                            "electric_motor_repair_shop",
                            "electric_motor_store",
                            "electric_motor_vehicle_dealer",
                            "electric_utility_company",
                            "electric_vehicle_charging_station",
                            "electrolysis_hair_removal_service",
                            "electronics_company",
                            "electronics_manufacturer",
                            "electronics_repair_shop",
                            "electronics_store",
                            "electronics_vending_machine",
                            "electronics_wholesaler",
                            "electronic_parts_supplier",
                            "elevator_manufacturer",
                            "elevator_service",
                            "embroidery_service",
                            "embroidery_shop",
                            "emergency_care_physician",
                            "emergency_care_service",
                            "emergency_dental_service",
                            "emergency_locksmith_service",
                            "emergency_room",
                            "emergency_training",
                            "emergency_training_school",
                            "emergency_veterinarian_service",
                            "employment_agency",
                            "employment_attorney",
                            "employment_consultant",
                            "endocrinologist",
                            "endodontist",
                            "energy_equipment_and_solutions",
                            "energy_supplier",
                            "engineer",
                            "engineering_consultant",
                            "engine_rebuilding_service",
                            "english_language_school",
                            "engraver",
                            "entertainer",
                            "entertainment_agency",
                            "environmental_consultant",
                            "environmental_engineer",
                            "environmental_health_service",
                            "environmental_organization",
                            "environment_renewable_natural_resources",
                            "equestrian_facility",
                            "equestrian_store",
                            "equipment_rental_agency",
                            "equipment_supplier",
                            "escape_room_center",
                            "escrow_service",
                            "espresso_bar",
                            "estate_appraiser",
                            "estate_liquidator",
                            "estate_planning_attorney",
                            "european_restaurant",
                            "event_management_company",
                            "event_planner",
                            "event_technology_service",
                            "event_ticket_seller",
                            "event_venue",
                            "excavating_contractor",
                            "executive_search_firm",
                            "executive_suite_rental_agency",
                            "exhibit",
                            "exporter",
                            "extended_stay_hotel",
                            "eyebrow_bar",
                            "eyelash_salon",
                            "eye_care_center",
                            "e_commerce_agency",
                            "e_commerce_service",
                            "fabrication_engineer",
                            "fabric_product_manufacturer",
                            "fabric_store",
                            "fabric_wholesaler",
                            "facial_spa",
                            "fairground",
                            "falafel_restaurant",
                            "family_counselor",
                            "family_day_care_service",
                            "family_law_attorney",
                            "family_planning_center",
                            "family_practice_physician",
                            "family_restaurant",
                            "family_service_center",
                            "farm",
                            "farmers_market",
                            "farmstay",
                            "farm_equipment_repair_service",
                            "farm_equipment_supplier",
                            "farm_shop",
                            "fashion_accessories_store",
                            "fashion_designer",
                            "fastener_supplier",
                            "fast_food_restaurant",
                            "fax_service",
                            "feed_manufacturer",
                            "feed_store",
                            "fence_contractor",
                            "fence_supply_store",
                            "fertility_clinic",
                            "fertility_physician",
                            "fertilizer_supplier",
                            "festival",
                            "fiberglass_repair_service",
                            "fiber_optic_products_supplier",
                            "filipino_restaurant",
                            "film_production_company",
                            "finance_broker",
                            "financial_advisor",
                            "financial_audit",
                            "financial_consultant",
                            "financial_institution",
                            "financial_planner",
                            "fine_dining_restaurant",
                            "fingerprinting_service",
                            "firearms_academy",
                            "fireplace_store",
                            "firewood_supplier",
                            "fireworks_store",
                            "fire_alarm_supplier",
                            "fire_damage_restoration_service",
                            "fire_department_equipment_supplier",
                            "fire_protection_consultant",
                            "fire_protection_equipment_supplier",
                            "fire_protection_service",
                            "fire_protection_system_supplier",
                            "first_aid",
                            "fishing_camp",
                            "fishing_charter",
                            "fishing_club",
                            "fishing_pier",
                            "fishing_pond",
                            "fishing_store",
                            "fish_and_chips_restaurant",
                            "fish_farm",
                            "fish_restaurant",
                            "fish_store",
                            "fitness_center",
                            "fitness_equipment_store",
                            "fitness_equipment_wholesaler",
                            "flag_store",
                            "flea_market",
                            "flight_school",
                            "flooring_contractor",
                            "flooring_store",
                            "floor_refinishing_service",
                            "floor_sanding_and_polishing_service",
                            "florist",
                            "flower_delivery",
                            "flower_designer",
                            "flower_market",
                            "food_and_beverage_consultant",
                            "food_bank",
                            "food_broker",
                            "food_court",
                            "food_manufacturer",
                            "food_processing_company",
                            "food_producer",
                            "food_products_supplier",
                            "football_club",
                            "foot_care",
                            "foot_massage_parlor",
                            "ford_dealer",
                            "foreclosure_service",
                            "foreign_consulate",
                            "forensic_consultant",
                            "forestry_service",
                            "forklift_dealer",
                            "forklift_rental_service",
                            "formal_clothing_store",
                            "foster_care_service",
                            "foundation",
                            "foundry",
                            "fountain_contractor",
                            "fraternal_organization",
                            "free_clinic",
                            "free_parking_lot",
                            "freight_forwarding_service",
                            "french_restaurant",
                            "fresh_food_market",
                            "fried_chicken_takeaway",
                            "frozen_dessert_supplier",
                            "frozen_food_store",
                            "frozen_yogurt_shop",
                            "fruit_and_vegetable_store",
                            "fuel_supplier",
                            "function_room_facility",
                            "funeral_celebrant_service",
                            "funeral_director",
                            "funeral_home",
                            "furnace_parts_supplier",
                            "furnace_repair_service",
                            "furnace_store",
                            "furnished_apartment_building",
                            "furniture_accessories",
                            "furniture_accessories_supplier",
                            "furniture_maker",
                            "furniture_manufacturer",
                            "furniture_rental_service",
                            "furniture_repair_shop",
                            "furniture_store",
                            "furniture_wholesaler",
                            "fusion_restaurant",
                            "gambling_house",
                            "game_store",
                            "garage_builder",
                            "garage_door_supplier",
                            "garbage_collection_service",
                            "garbage_dump",
                            "gardener",
                            "garden_building_retail",
                            "garden_center",
                            "garden_furniture_store",
                            "gasfitter",
                            "gastroenterologist",
                            "gastropub",
                            "gas_company",
                            "gas_cylinders_supplier",
                            "gas_installation_service",
                            "gas_logs_supplier",
                            "gas_station",
                            "gated_community",
                            "gay_bar",
                            "gazebo_builder",
                            "gemologist",
                            "genealogist",
                            "general_contractor",
                            "general_practice_attorney",
                            "general_practitioner",
                            "general_store",
                            "generator_shop",
                            "geotechnical_engineer",
                            "geriatrician",
                            "german_restaurant",
                            "gift_basket_store",
                            "gift_shop",
                            "gift_wrap_store",
                            "glasses_repair_service",
                            "glassware_store",
                            "glass_and_mirror_shop",
                            "glass_blower",
                            "glass_cutting_service",
                            "glass_engraving",
                            "glass_etching_service",
                            "glass_industry",
                            "glass_manufacturer",
                            "glass_repair_service",
                            "glass_shop",
                            "glazier",
                            "gluten_free_restaurant",
                            "gmc_dealer",
                            "goldfish_store",
                            "goldsmith",
                            "gold_dealer",
                            "golf_cart_dealer",
                            "golf_club",
                            "golf_course",
                            "golf_driving_range",
                            "golf_instructor",
                            "golf_shop",
                            "gourmet_grocery_store",
                            "go_kart_track",
                            "gps_supplier",
                            "graduate_school",
                            "graffiti_removal_service",
                            "grain_elevator",
                            "granite_supplier",
                            "graphic_designer",
                            "greek_restaurant",
                            "greenhouse",
                            "green_energy_supplier",
                            "greeting_card_shop",
                            "grill_store",
                            "grocery_delivery_service",
                            "grocery_store",
                            "group_home",
                            "guest_house",
                            "guitar_instructor",
                            "guitar_store",
                            "gun_club",
                            "gun_shop",
                            "gutter_cleaning_service",
                            "gutter_service",
                            "gym",
                            "gymnasium_school",
                            "gymnastics_center",
                            "gymnastics_club",
                            "gynecologist",
                            "gynecologist_only",
                            "gyro_restaurant",
                            "hair_extensions_supplier",
                            "hair_extension_technician",
                            "hair_removal_service",
                            "hair_replacement_service",
                            "hair_salon",
                            "hair_transplantation_clinic",
                            "halal_restaurant",
                            "hamburger_restaurant",
                            "handbags_shop",
                            "handicapped_transportation_service",
                            "handicraft",
                            "handyman",
                            "hand_surgeon",
                            "hardware_store",
                            "harley_davidson_dealer",
                            "hat_shop",
                            "haunted_house",
                            "hawaiian_restaurant",
                            "hay_supplier",
                            "head_start_center",
                            "health_and_beauty_shop",
                            "health_consultant",
                            "health_counselor",
                            "health_food_restaurant",
                            "health_food_store",
                            "health_insurance_agency",
                            "health_spa",
                            "hearing_aid_repair_service",
                            "hearing_aid_store",
                            "heart_hospital",
                            "heating_contractor",
                            "heating_equipment_supplier",
                            "heating_oil_supplier",
                            "helicopter_tour_agency",
                            "heliport",
                            "helium_gas_supplier",
                            "hematologist",
                            "hepatologist",
                            "herbalist",
                            "herbal_medicine_store",
                            "herb_shop",
                            "heritage_museum",
                            "hindu_temple",
                            "hip_hop_dance_class",
                            "historical_place_museum",
                            "historical_society",
                            "history_museum",
                            "hoagie_restaurant",
                            "hobby_store",
                            "holding_company",
                            "holiday_apartment_rental",
                            "holiday_home",
                            "holistic_medicine_practitioner",
                            "homeless_service",
                            "homeless_shelter",
                            "homeopath",
                            "homeowners_association",
                            "home_automation_company",
                            "home_builder",
                            "home_cinema_installation",
                            "home_goods_store",
                            "home_health_care_service",
                            "home_help",
                            "home_help_service_agency",
                            "home_improvement_store",
                            "home_inspector",
                            "home_insurance_agency",
                            "home_theater_store",
                            "honda_dealer",
                            "honey_farm",
                            "hookah_bar",
                            "hookah_store",
                            "horseback_riding_service",
                            "horse_boarding_stable",
                            "horse_breeder",
                            "horse_rental_service",
                            "horse_riding_field",
                            "horse_riding_school",
                            "horse_trailer_dealer",
                            "horse_trainer",
                            "hose_supplier",
                            "hospice",
                            "hostel",
                            "hotel",
                            "hot_dog_restaurant",
                            "hot_dog_stand",
                            "hot_pot_restaurant",
                            "hot_tub_repair_service",
                            "hot_tub_store",
                            "hot_water_system_supplier",
                            "house_cleaning_service",
                            "house_clearance_service",
                            "house_sitter",
                            "housing_authority",
                            "housing_complex",
                            "housing_cooperative",
                            "housing_development",
                            "housing_society",
                            "human_ressource_consulting",
                            "hunting_and_fishing_store",
                            "hunting_area",
                            "hunting_club",
                            "hunting_preserve",
                            "hunting_store",
                            "hvac_contractor",
                            "hydraulic_equipment_supplier",
                            "hydraulic_repair_service",
                            "hydroponics_equipment_supplier",
                            "hyperbaric_medicine_physician",
                            "hypnotherapy_service",
                            "hyundai_dealer",
                            "ice_cream_shop",
                            "ice_skating_rink",
                            "ice_supplier",
                            "image_consultant",
                            "immigration_attorney",
                            "immunologist",
                            "importer",
                            "import_export_company",
                            "incense_supplier",
                            "income_protection_insurance",
                            "income_tax_help_association",
                            "indian_grocery_store",
                            "indian_restaurant",
                            "indian_takeaway",
                            "indoor_cycling",
                            "indoor_golf_course",
                            "indoor_playground",
                            "indoor_swimming_pool",
                            "industrial_chemicals_wholesaler",
                            "industrial_consultant",
                            "industrial_design_company",
                            "industrial_engineer",
                            "industrial_equipment_supplier",
                            "industrial_gas_supplier",
                            "industrial_real_estate_agency",
                            "industrial_vacuum_equipment_supplier",
                            "infectious_disease_physician",
                            "information_services",
                            "inn",
                            "insulation_contractor",
                            "insulation_materials_store",
                            "insurance_agency",
                            "insurance_attorney",
                            "insurance_broker",
                            "insurance_company",
                            "intensivist",
                            "interior_architect_office",
                            "interior_construction_contractor",
                            "interior_decorator",
                            "interior_designer",
                            "interior_plant_service",
                            "international_trade_consultant",
                            "internet_cafe",
                            "internet_marketing_service",
                            "internet_service_provider",
                            "internet_shop",
                            "internist",
                            "investment_bank",
                            "investment_company",
                            "investment_service",
                            "invitation_printing_service",
                            "irish_pub",
                            "irish_restaurant",
                            "iron_works",
                            "irrigation_equipment_supplier",
                            "italian_grocery_store",
                            "italian_restaurant",
                            "iv_therapy_service",
                            "jamaican_restaurant",
                            "janitorial_equipment_supplier",
                            "janitorial_service",
                            "japanese_authentic_restaurant",
                            "japanese_restaurant",
                            "japanese_steakhouse",
                            "jeep_dealer",
                            "jeweler",
                            "jewelry_appraiser",
                            "jewelry_buyer",
                            "jewelry_designer",
                            "jewelry_engraver",
                            "jewelry_manufacturer",
                            "jewelry_repair_service",
                            "jewelry_store",
                            "judo_school",
                            "juice_shop",
                            "jujitsu_school",
                            "junkyard",
                            "junk_dealer",
                            "junk_removal_service",
                            "karaoke",
                            "karaoke_bar",
                            "karate_club",
                            "karate_school",
                            "kebab_shop",
                            "kennel",
                            "key_duplication_service",
                            "kia_dealer",
                            "kickboxing_school",
                            "kiosk",
                            "kitchen_furniture_store",
                            "kitchen_remodeler",
                            "kitchen_supply_store",
                            "knife_store",
                            "knit_shop",
                            "korean_barbecue_restaurant",
                            "korean_restaurant",
                            "kosher_restaurant",
                            "kung_fu_school",
                            "laboratory",
                            "laboratory_equipment_supplier",
                            "labor_relations_attorney",
                            "lamination_service",
                            "landscaper",
                            "landscape_architect",
                            "landscape_designer",
                            "landscape_lighting_designer",
                            "landscaping_supply_store",
                            "land_surveying_office",
                            "land_surveyor",
                            "language_school",
                            "laser_cutting_service",
                            "laser_equipment_supplier",
                            "laser_hair_removal_service",
                            "laser_tag_center",
                            "lasik_surgeon",
                            "latin_american_restaurant",
                            "laundromat",
                            "laundry",
                            "laundry_service",
                            "lawn_care_service",
                            "lawn_equipment_rental_service",
                            "lawn_irrigation_equipment_supplier",
                            "lawn_mower_repair_service",
                            "lawn_mower_store",
                            "lawn_sprinkler_system_contractor",
                            "lawyer",
                            "law_firm",
                            "learning_center",
                            "leasing_service",
                            "leather_cleaning_service",
                            "leather_goods_manufacturer",
                            "leather_goods_store",
                            "leather_repair_service",
                            "lebanese_restaurant",
                            "legal_services",
                            "license_bureau",
                            "life_coach",
                            "life_insurance_agency",
                            "lighting_consultant",
                            "lighting_contractor",
                            "lighting_manufacturer",
                            "lighting_store",
                            "lighting_wholesaler",
                            "light_bulb_supplier",
                            "limousine_service",
                            "lincoln_mercury_dealer",
                            "linens_store",
                            "lingerie_store",
                            "liquidator",
                            "liquor_store",
                            "literacy_program",
                            "livestock_auction_house",
                            "livestock_breeder",
                            "livestock_dealer",
                            "livestock_producer",
                            "live_music_bar",
                            "live_music_venue",
                            "loan_agency",
                            "local_history_museum",
                            "local_medical_services",
                            "locksmith",
                            "locks_supplier",
                            "lodge",
                            "lodging",
                            "logging_contractor",
                            "logistics_service",
                            "log_cabins",
                            "log_home_builder",
                            "lottery_retailer",
                            "lottery_shop",
                            "lounge",
                            "low_income_housing_program",
                            "luggage_storage_facility",
                            "luggage_store",
                            "lumber_store",
                            "lunch_restaurant",
                            "lymph_drainage",
                            "machinery_parts_manufacturer",
                            "machine_construction",
                            "machine_maintenance",
                            "machine_repair_service",
                            "machine_shop",
                            "machine_workshop",
                            "machining_manufacturer",
                            "magazine_store",
                            "magician",
                            "mailbox_rental_service",
                            "mailing_service",
                            "makeup_artist",
                            "mammography_service",
                            "manufacturer",
                            "mapping_service",
                            "marble_contractor",
                            "marble_supplier",
                            "marina",
                            "marine_supply_store",
                            "market",
                            "marketing_agency",
                            "marketing_consultant",
                            "market_researcher",
                            "marriage_celebrant",
                            "marriage_counselor",
                            "martial_arts_club",
                            "martial_arts_school",
                            "martial_arts_supply_store",
                            "masonic_building",
                            "masonry_contractor",
                            "masonry_supply_store",
                            "massage_school",
                            "massage_spa",
                            "massage_supply_store",
                            "massage_therapist",
                            "material_handling_equipment_supplier",
                            "maternity_store",
                            "mathematics_school",
                            "mattress_store",
                            "meal_delivery",
                            "meal_takeaway",
                            "measuring_instruments_supplier",
                            "meat_processor",
                            "meat_products",
                            "meat_wholesaler",
                            "mechanic",
                            "mechanical_contractor",
                            "mechanical_engineer",
                            "mediation_service",
                            "media_company",
                            "media_consultant",
                            "media_house",
                            "medical_billing_service",
                            "medical_center",
                            "medical_certificate_service",
                            "medical_clinic",
                            "medical_diagnostic_imaging_center",
                            "medical_equipment_manufacturer",
                            "medical_equipment_supplier",
                            "medical_examiner",
                            "medical_group",
                            "medical_lab",
                            "medical_lawyer",
                            "medical_office",
                            "medical_school",
                            "medical_spa",
                            "medical_supply_store",
                            "medical_technology_manufacturer",
                            "meditation_center",
                            "meditation_instructor",
                            "mediterranean_restaurant",
                            "meeting_planning_service",
                            "mens_clothing_store",
                            "mens_health_physician",
                            "mens_tailor",
                            "mental_health_clinic",
                            "mental_health_service",
                            "mercedes_benz_dealer",
                            "metal_construction_company",
                            "metal_fabricator",
                            "metal_finisher",
                            "metal_heat_treating_service",
                            "metal_industry_suppliers",
                            "metal_machinery_supplier",
                            "metal_polishing_service",
                            "metal_processing_company",
                            "metal_stamping_service",
                            "metal_supplier",
                            "metal_working_shop",
                            "metal_workshop",
                            "metaphysical_supply_store",
                            "mexican_goods_store",
                            "mexican_grocery_store",
                            "mexican_restaurant",
                            "mexican_torta_restaurant",
                            "microwave_oven_repair_service",
                            "middle_eastern_restaurant",
                            "midwife",
                            "military_base",
                            "mill",
                            "millwork_shop",
                            "miniature_golf_course",
                            "mining_company",
                            "mining_equipment",
                            "mirror_shop",
                            "mission",
                            "mobile_catering",
                            "mobile_home_dealer",
                            "mobile_home_park",
                            "mobile_home_rental_agency",
                            "mobile_home_supply_store",
                            "mobile_phone_repair_shop",
                            "mobility_equipment_supplier",
                            "modeling_agency",
                            "model_design_company",
                            "modern_indian_restaurant",
                            "modular_home_builder",
                            "modular_home_dealer",
                            "molding_supplier",
                            "money_order_service",
                            "money_transfer_service",
                            "monogramming_service",
                            "montessori_school",
                            "monument_maker",
                            "mortgage_broker",
                            "mortgage_lender",
                            "mortuary",
                            "motel",
                            "motorcycle_dealer",
                            "motorcycle_insurance_agency",
                            "motorcycle_parts_store",
                            "motorcycle_rental_agency",
                            "motorcycle_repair_shop",
                            "motorcycle_shop",
                            "motorsports_store",
                            "motor_scooter_dealer",
                            "motor_vehicle_dealer",
                            "mountain_hut",
                            "movie_rental_kiosk",
                            "movie_rental_store",
                            "movie_studio",
                            "movie_theater",
                            "moving_and_storage_service",
                            "moving_company",
                            "moving_supply_store",
                            "mri_center",
                            "muay_thai_boxing_gym",
                            "muffler_shop",
                            "mulch_supplier",
                            "multimedia_and_electronic_book_publisher",
                            "municipal_administration_office",
                            "musical_club",
                            "musical_instrument_manufacturer",
                            "musical_instrument_rental_service",
                            "musical_instrument_repair_shop",
                            "musical_instrument_store",
                            "musician",
                            "music_instructor",
                            "music_management_and_promotion",
                            "music_producer",
                            "music_publisher",
                            "music_school",
                            "music_store",
                            "nail_salon",
                            "national_forest",
                            "native_american_goods_store",
                            "natural_foods_store",
                            "natural_stone_supplier",
                            "natural_stone_wholesaler",
                            "nature_preserve",
                            "naturopathic_practitioner",
                            "needlework_shop",
                            "neonatal_physician",
                            "neon_sign_shop",
                            "nepalese_restaurant",
                            "nephrologist",
                            "neurologist",
                            "neurophysiologist",
                            "neurosurgeon",
                            "newspaper_publisher",
                            "newsstand",
                            "news_service",
                            "new_us_american_restaurant",
                            "night_club",
                            "nissan_dealer",
                            "noodle_shop",
                            "notary_public",
                            "novelty_store",
                            "nurse_practitioner",
                            "nursing_agency",
                            "nursing_home",
                            "nursing_school",
                            "nutritionist",
                            "nut_store",
                            "obstetrics_gynecology_clinic",
                            "occupational_health_service",
                            "occupational_medical_physician",
                            "occupational_safety_and_health",
                            "occupational_therapist",
                            "office_equipment_rental_service",
                            "office_equipment_repair_service",
                            "office_equipment_supplier",
                            "office_furniture_store",
                            "office_space_rental_agency",
                            "office_supply_store",
                            "off_roading_area",
                            "oilfield",
                            "oil_change_service",
                            "oil_company",
                            "oil_field_equipment_supplier",
                            "oil_refinery",
                            "oncologist",
                            "ophthalmologist",
                            "ophthalmology_clinic",
                            "optical_products_manufacturer",
                            "optician",
                            "optometrist",
                            "oral_maxillofacial_surgeon",
                            "oral_surgeon",
                            "orchard",
                            "orchestra",
                            "organic_farm",
                            "organic_food_store",
                            "organic_restaurant",
                            "organic_store",
                            "oriental_rug_store",
                            "orthodontist",
                            "orthodox_synagogue",
                            "orthopedic_clinic",
                            "orthopedic_shoe_store",
                            "orthopedic_surgeon",
                            "orthotics_and_prosthetics_service",
                            "osteopath",
                            "otolaryngologist",
                            "otolaryngology_clinic",
                            "outboard_motor_store",
                            "outdoor_activity_organizer",
                            "outdoor_clothing_and_equipment_shop",
                            "outdoor_furniture_store",
                            "outdoor_sports_store",
                            "outerwear_store",
                            "outlet_store",
                            "oxygen_equipment_supplier",
                            "oyster_bar_restaurant",
                            "packaging_company",
                            "packaging_supply_store",
                            "paintball_center",
                            "painter",
                            "painting",
                            "paintings_store",
                            "painting_lessons",
                            "painting_studio",
                            "paint_manufacturer",
                            "paint_store",
                            "paint_stripping_company",
                            "pain_control_clinic",
                            "pain_management_physician",
                            "pakistani_restaurant",
                            "pallet_supplier",
                            "pancake_house",
                            "paper_distributor",
                            "paper_mill",
                            "paper_store",
                            "paralegal_services_provider",
                            "parapharmacy",
                            "parking_garage",
                            "parking_lot_for_bicycles",
                            "parking_lot_for_motorcycle",
                            "park_and_ride",
                            "party_equipment_rental_service",
                            "party_planner",
                            "party_store",
                            "passport_photo_processor",
                            "pasta_shop",
                            "pastry_shop",
                            "patent_attorney",
                            "paternity_testing_service",
                            "pathologist",
                            "patio_enclosure_supplier",
                            "paving_contractor",
                            "paving_materials_supplier",
                            "pawn_shop",
                            "payroll_service",
                            "pediatrician",
                            "pediatric_cardiologist",
                            "pediatric_clinic",
                            "pediatric_dentist",
                            "pediatric_endocrinologist",
                            "pediatric_gastroenterologist",
                            "pediatric_nephrologist",
                            "pediatric_neurologist",
                            "pediatric_oncologist",
                            "pediatric_ophthalmologist",
                            "pediatric_orthopedic_surgeon",
                            "pediatric_pulmonologist",
                            "pediatric_surgeon",
                            "pediatric_urologist",
                            "performing_arts_group",
                            "performing_arts_theater",
                            "perfume_store",
                            "periodontist",
                            "permanent_make_up_clinic",
                            "personal_injury_lawyer",
                            "personal_trainer",
                            "peruvian_restaurant",
                            "pest_control_service",
                            "petroleum_products_company",
                            "pet_adoption_service",
                            "pet_boarding_service",
                            "pet_cemetery",
                            "pet_funeral_services",
                            "pet_groomer",
                            "pet_sitter",
                            "pet_store",
                            "pet_supply_store",
                            "pet_trainer",
                            "pharmaceutical_company",
                            "pharmacy",
                            "phone_repair_service",
                            "photographer",
                            "photography_class",
                            "photography_service",
                            "photography_studio",
                            "photo_agency",
                            "photo_booth",
                            "photo_lab",
                            "photo_restoration_service",
                            "photo_shop",
                            "pho_restaurant",
                            "physiatrist",
                            "physical_examination_center",
                            "physical_fitness_program",
                            "physician_assistant",
                            "physiotherapist",
                            "physiotherapy_center",
                            "piano_instructor",
                            "piano_moving_service",
                            "piano_repair_service",
                            "piano_store",
                            "piano_tuning_service",
                            "pickleball_court",
                            "pick_your_own_farm_produce",
                            "picnic_ground",
                            "picture_frame_shop",
                            "pie_shop",
                            "pilates_studio",
                            "pipe_supplier",
                            "pizzatakeaway",
                            "pizza_delivery_service",
                            "pizza_restaurant",
                            "place_of_worship",
                            "plant_nursery",
                            "plaster_contractor",
                            "plastic_fabrication_company",
                            "plastic_injection_molding_service",
                            "plastic_products_supplier",
                            "plastic_surgeon",
                            "plastic_surgery_clinic",
                            "plating_service",
                            "playground_equipment_supplier",
                            "plumber",
                            "plumbing_supply_store",
                            "plus_size_clothing_store",
                            "plywood_supplier",
                            "podiatrist",
                            "poke_bar",
                            "police_supply_store",
                            "political_party",
                            "pond_contractor",
                            "pond_supply_store",
                            "pool_cleaning_service",
                            "pool_hall",
                            "popcorn_store",
                            "portable_building_manufacturer",
                            "portable_toilet_supplier",
                            "portrait_studio",
                            "poster_store",
                            "pottery_classes",
                            "pottery_store",
                            "poultry_farm",
                            "powder_coating_service",
                            "powersports_vehicle_dealer",
                            "power_plant",
                            "power_plant_equipment_supplier",
                            "pregnancy_care_center",
                            "preparatory_school",
                            "pressure_washing_service",
                            "primary_school",
                            "printer_repair_service",
                            "printing_equipment_supplier",
                            "print_shop",
                            "private_college",
                            "private_equity_firm",
                            "private_golf_course",
                            "private_investigator",
                            "private_school",
                            "private_tutor",
                            "private_university",
                            "probation_office",
                            "process_server",
                            "proctologist",
                            "produce_market",
                            "produce_wholesaler",
                            "professional_organizer",
                            "promotional_products_supplier",
                            "propane_supplier",
                            "property_administrator",
                            "property_investment",
                            "property_maintenance",
                            "property_management_company",
                            "prosthodontist",
                            "protective_clothing_supplier",
                            "psychiatric_hospital",
                            "psychiatrist",
                            "psychic",
                            "psychoanalyst",
                            "psychologist",
                            "psychoneurological_specialized_clinic",
                            "psychotherapist",
                            "pub",
                            "public_bathroom",
                            "public_golf_course",
                            "public_health_department",
                            "public_parking_space",
                            "public_relations_firm",
                            "public_safety_office",
                            "public_wheelchair_accessible_bathroom",
                            "public_works_department",
                            "publisher",
                            "puerto_rican_restaurant",
                            "pulmonologist",
                            "pumpkin_patch",
                            "pump_supplier",
                            "quarry",
                            "quilt_shop",
                            "race_car_dealer",
                            "racing_car_parts_store",
                            "radiator_repair_service",
                            "radiator_shop",
                            "radiologist",
                            "radio_broadcaster",
                            "raft_trip_outfitter",
                            "railing_contractor",
                            "railroad_company",
                            "railroad_contractor",
                            "ramen_restaurant",
                            "ram_dealer",
                            "ranch",
                            "rare_book_store",
                            "ready_mix_concrete_supplier",
                            "real_estate_agency",
                            "real_estate_agents",
                            "real_estate_appraiser",
                            "real_estate_attorney",
                            "real_estate_auctioneer",
                            "real_estate_consultant",
                            "real_estate_developer",
                            "real_estate_rental_agency",
                            "real_estate_school",
                            "recording_studio",
                            "record_company",
                            "record_storage_facility",
                            "record_store",
                            "recreation_center",
                            "recruiter",
                            "recycling_center",
                            "recycling_drop_off_location",
                            "reflexologist",
                            "refrigerated_transport_service",
                            "refrigerator_repair_service",
                            "refrigerator_store",
                            "regional_airport",
                            "registered_general_nurse",
                            "registration_office",
                            "rehabilitation_center",
                            "reiki_therapist",
                            "religious_destination",
                            "religious_goods_store",
                            "religious_school",
                            "remodeler",
                            "renters_insurance_agency",
                            "repair_service",
                            "reproductive_health_clinic",
                            "reptile_store",
                            "research_and_product_development",
                            "research_foundation",
                            "research_institute",
                            "resort_hotel",
                            "restaurant",
                            "restaurant_supply_store",
                            "rest_stop",
                            "resume_service",
                            "retail_space_rental_agency",
                            "retaining_wall_supplier",
                            "retirement_community",
                            "retirement_home",
                            "retreat_center",
                            "rheumatologist",
                            "rice_restaurant",
                            "road_construction_company",
                            "road_construction_machine_repair_service",
                            "rock_climbing",
                            "rock_climbing_centre",
                            "rock_shop",
                            "roller_skating_rink",
                            "roofing_contractor",
                            "roofing_supply_store",
                            "rubber_products_supplier",
                            "rug_store",
                            "running_store",
                            "rustic_furniture_store",
                            "rv_dealer",
                            "rv_park",
                            "rv_rental_agency",
                            "rv_repair_shop",
                            "rv_storage_facility",
                            "rv_supply_store",
                            "safety_equipment_supplier",
                            "safe_and_vault_shop",
                            "sailing_school",
                            "salad_shop",
                            "salsa_classes",
                            "salvadoran_restaurant",
                            "salvage_dealer",
                            "salvage_yard",
                            "sandblasting_service",
                            "sandwich_shop",
                            "sand_and_gravel_supplier",
                            "sanitation_service",
                            "satellite_communication_service",
                            "sauna",
                            "sauna_store",
                            "savings_bank",
                            "saw_mill",
                            "scaffolding_rental_service",
                            "school_administrator",
                            "school_bus_service",
                            "school_center",
                            "school_supply_store",
                            "science_museum",
                            "scooter_rental_service",
                            "scooter_repair_shop",
                            "scouting",
                            "scrapbooking_store",
                            "scrap_metal_dealer",
                            "screen_printer",
                            "screen_printing_shop",
                            "screen_printing_supply_store",
                            "screen_repair_service",
                            "screen_store",
                            "scuba_instructor",
                            "scuba_tour_agency",
                            "sculptor",
                            "sculpture",
                            "seafood_market",
                            "seafood_restaurant",
                            "seafood_wholesaler",
                            "seasonal_goods_store",
                            "second_hand_shop",
                            "security_guard_service",
                            "security_service",
                            "security_system_installer",
                            "security_system_supplier",
                            "seed_supplier",
                            "self_defense_school",
                            "self_service_car_wash",
                            "self_storage_facility",
                            "seminary",
                            "senior_citizens_care_service",
                            "senior_citizen_center",
                            "septic_system_service",
                            "serviced_accommodation",
                            "serviced_apartment",
                            "sewage_disposal_service",
                            "sewage_treatment_plant",
                            "sewing_company",
                            "sewing_machine_repair_service",
                            "sewing_machine_store",
                            "sewing_shop",
                            "sharpening_service",
                            "shawarma_restaurant",
                            "shed_builder",
                            "sheet_metal_contractor",
                            "shelving_store",
                            "sheriffs_department",
                            "shipping_and_mailing_service",
                            "shipping_company",
                            "shipping_service",
                            "shipyard",
                            "shoe_repair_shop",
                            "shoe_store",
                            "shooting_range",
                            "shopping_center",
                            "short_term_apartment_rental_agency",
                            "shower_door_shop",
                            "showroom",
                            "shredding_service",
                            "shrine",
                            "siding_contractor",
                            "sightseeing_tour_agency",
                            "sign_shop",
                            "silversmith",
                            "skateboard_park",
                            "skateboard_shop",
                            "skate_shop",
                            "skin_care_clinic",
                            "skin_care_products_vending_machine",
                            "ski_rental_service",
                            "ski_resort",
                            "ski_store",
                            "skylight_contractor",
                            "sleep_clinic",
                            "small_appliance_repair_service",
                            "small_engine_repair_service",
                            "small_plates_restaurant",
                            "smog_inspection_station",
                            "smoke_shop",
                            "snack_bar",
                            "snowboard_shop",
                            "snowmobile_dealer",
                            "snow_removal_service",
                            "soccer_club",
                            "soccer_practice",
                            "soccer_store",
                            "social_club",
                            "social_security_attorney",
                            "social_worker",
                            "sod_supplier",
                            "sofa_store",
                            "softball_club",
                            "software_company",
                            "software_training_institute",
                            "soft_drinks_shop",
                            "soil_testing_service",
                            "solar_energy_company",
                            "solar_energy_contractor",
                            "solar_energy_equipment_supplier",
                            "solar_photovoltaic_power_plant",
                            "soul_food_restaurant",
                            "soup_restaurant",
                            "soup_shop",
                            "southern_us_restaurant",
                            "southwestern_us_restaurant",
                            "south_asia_restaurant",
                            "south_east_asian_restaurant",
                            "south_indian_restaurant",
                            "souvenir_store",
                            "spa",
                            "spanish_restaurant",
                            "spa_and_health_club",
                            "specialized_clinic",
                            "speech_pathologist",
                            "spice_store",
                            "spiritist_center",
                            "sporting_goods_store",
                            "sportswear_store",
                            "sports_bar",
                            "sports_card_store",
                            "sports_club",
                            "sports_complex",
                            "sports_equipment_rental_service",
                            "sports_massage_therapist",
                            "sports_medicine_clinic",
                            "sports_medicine_physician",
                            "sports_memorabilia_store",
                            "sports_nutrition_store",
                            "sports_school",
                            "spring_supplier",
                            "stable",
                            "stage",
                            "stage_lighting_equipment_supplier",
                            "stained_glass_studio",
                            "stair_contractor",
                            "state_government_office",
                            "state_liquor_store",
                            "state_police",
                            "stationery_store",
                            "statuary",
                            "std_testing_service",
                            "steak_house",
                            "steelwork_design_company",
                            "steel_construction_company",
                            "steel_distributor",
                            "steel_erector",
                            "steel_fabricator",
                            "stereo_store",
                            "sticker_manufacturer",
                            "stock_broker",
                            "stone_cutter",
                            "stone_supplier",
                            "storage_facility",
                            "store",
                            "store_equipment_supplier",
                            "structural_engineer",
                            "stucco_contractor",
                            "student_career_counseling_office",
                            "student_housing_center",
                            "studying_center",
                            "stylist",
                            "subaru_dealer",
                            "summer_camp",
                            "sunglasses_store",
                            "sunroom_contractor",
                            "supermarket",
                            "surf_shop",
                            "surgeon",
                            "surgical_center",
                            "surgical_oncologist",
                            "surgical_supply_store",
                            "surplus_store",
                            "surveyor",
                            "sushi_restaurant",
                            "sushi_takeaway",
                            "swimming_instructor",
                            "swimming_pool",
                            "swimming_pool_contractor",
                            "swimming_pool_repair_service",
                            "swimming_pool_supply_store",
                            "swimming_school",
                            "swimwear_store",
                            "swim_club",
                            "tack_shop",
                            "taco_restaurant",
                            "taekwondo_school",
                            "tailor",
                            "tai_chi_school",
                            "talent_agency",
                            "tanning_studio",
                            "tapas_bar",
                            "tapas_restaurant",
                            "tattoo_and_piercing_shop",
                            "tattoo_artist",
                            "tattoo_removal_service",
                            "tattoo_shop",
                            "taxidermist",
                            "taxi_service",
                            "tax_assessor",
                            "tax_attorney",
                            "tax_collectors_office",
                            "tax_consultant",
                            "tax_preparation",
                            "tax_preparation_service",
                            "tea_house",
                            "tea_store",
                            "technical_school",
                            "teeth_whitening_service",
                            "telecommunications_contractor",
                            "telecommunications_engineer",
                            "telecommunications_equipment_supplier",
                            "telecommunications_service_provider",
                            "telephone_answering_service",
                            "telephone_company",
                            "television_repair_service",
                            "television_station",
                            "temp_agency",
                            "tennis_club",
                            "tennis_court",
                            "tennis_instructor",
                            "tennis_store",
                            "tent_rental_service",
                            "teppan_grill_restaurant",
                            "tex_mex_restaurant",
                            "thai_massage_therapist",
                            "thai_restaurant",
                            "theater_company",
                            "theater_production",
                            "theme_park",
                            "three_d_printing_service",
                            "thrift_store",
                            "tile_cleaning_service",
                            "tile_contractor",
                            "tile_store",
                            "tire_repair_shop",
                            "tire_service",
                            "tire_shop",
                            "title_company",
                            "tobacco_shop",
                            "tobacco_supplier",
                            "toner_cartridge_supplier",
                            "tool_and_die_shop",
                            "tool_manufacturer",
                            "tool_rental_service",
                            "tool_repair_shop",
                            "tool_store",
                            "tool_wholesaler",
                            "topsoil_supplier",
                            "tourist_information_center",
                            "tour_agency",
                            "tour_operator",
                            "towing_equipment_provider",
                            "towing_service",
                            "townhouse_complex",
                            "toyota_dealer",
                            "toy_store",
                            "tractor_dealer",
                            "tractor_repair_shop",
                            "trade_school",
                            "trading_card_store",
                            "traditional_us_american_restaurant",
                            "trailer_dealer",
                            "trailer_manufacturer",
                            "trailer_rental_service",
                            "trailer_repair_shop",
                            "trailer_supply_store",
                            "training_center",
                            "transcription_service",
                            "translator",
                            "transmission_shop",
                            "transportation_escort_service",
                            "transportation_service",
                            "travel_agency",
                            "travel_clinic",
                            "tree_farm",
                            "tree_service",
                            "trial_attorney",
                            "trophy_shop",
                            "tropical_fish_store",
                            "trucking_company",
                            "trucking_school",
                            "truck_accessories_store",
                            "truck_dealer",
                            "truck_parts_supplier",
                            "truck_rental_agency",
                            "truck_repair_shop",
                            "truck_stop",
                            "truck_topper_supplier",
                            "truss_manufacturer",
                            "trust_bank",
                            "turf_supplier",
                            "turkish_restaurant",
                            "tutoring_service",
                            "tuxedo_shop",
                            "typing_service",
                            "t_shirt_store",
                            "underwear_store",
                            "uniform_store",
                            "unisex_hairdresser",
                            "university_library",
                            "upholstery_cleaning_service",
                            "upholstery_shop",
                            "urban_planning_department",
                            "urgent_care_center",
                            "urologist",
                            "urology_clinic",
                            "used_appliance_store",
                            "used_auto_parts_store",
                            "used_bicycle_shop",
                            "used_book_store",
                            "used_car_dealer",
                            "used_cd_store",
                            "used_clothing_store",
                            "used_computer_store",
                            "used_furniture_store",
                            "used_motorcycle_dealer",
                            "used_musical_instrument_store",
                            "used_office_furniture_store",
                            "used_tire_shop",
                            "used_truck_dealer",
                            "utility_contractor",
                            "utility_trailer_dealer",
                            "vacation_home_rental_agency",
                            "vacuum_cleaner_repair_shop",
                            "vacuum_cleaner_store",
                            "vacuum_cleaning_system_supplier",
                            "van_rental_agency",
                            "vaporizer_store",
                            "variety_store",
                            "vascular_surgeon",
                            "vegan_restaurant",
                            "vegetarian_cafe_and_deli",
                            "vegetarian_restaurant",
                            "vehicle_inspection",
                            "vehicle_shipping_agent",
                            "vehicle_wrapping_service",
                            "vending_machine_supplier",
                            "veterans_affairs_department",
                            "veterans_center",
                            "veterans_hospital",
                            "veterans_organization",
                            "veterinarian",
                            "veterinary_pharmacy",
                            "video_arcade",
                            "video_conferencing_equipment_supplier",
                            "video_conferencing_service",
                            "video_duplication_service",
                            "video_editing_service",
                            "video_game_rental_kiosk",
                            "video_game_rental_store",
                            "video_game_store",
                            "video_production_service",
                            "video_store",
                            "vietnamese_restaurant",
                            "villa",
                            "vineyard",
                            "vintage_clothing_store",
                            "vinyl_sign_shop",
                            "violin_shop",
                            "virtual_office_rental",
                            "visa_and_passport_office",
                            "visitor_center",
                            "vitamin_and_supplements_store",
                            "vocal_instructor",
                            "vocational_training_school",
                            "volkswagen_dealer",
                            "volleyball_club",
                            "walk_in_clinic",
                            "wallpaper_store",
                            "warehouse",
                            "warehouse_store",
                            "washer_and_dryer_repair_service",
                            "washer_and_dryer_store",
                            "waste_management_service",
                            "watch_repair_service",
                            "watch_store",
                            "waterproofing_company",
                            "water_cooler_supplier",
                            "water_damage_restoration_service",
                            "water_filter_supplier",
                            "water_jet_cutting_service",
                            "water_park",
                            "water_pump_supplier",
                            "water_purification_company",
                            "water_ski_shop",
                            "water_softening_equipment_supplier",
                            "water_sports_equipment_rental_service",
                            "water_testing_service",
                            "water_treatment_plant",
                            "water_treatment_supplier",
                            "water_utility_company",
                            "water_works",
                            "water_works_equipment_supplier",
                            "waxing_hair_removal_service",
                            "website_designer",
                            "web_hosting_service",
                            "wedding_bakery",
                            "wedding_buffet",
                            "wedding_chapel",
                            "wedding_photographer",
                            "wedding_planner",
                            "wedding_service",
                            "wedding_store",
                            "wedding_venue",
                            "weightlifting_area",
                            "weight_loss_service",
                            "weigh_station",
                            "welder",
                            "welding_gas_supplier",
                            "welding_supply_store",
                            "wellness_center",
                            "wellness_program",
                            "well_drilling_contractor",
                            "western_apparel_store",
                            "wheelchair_rental_service",
                            "wheelchair_repair_service",
                            "wheelchair_store",
                            "wheel_alignment_service",
                            "wheel_store",
                            "wholesaler",
                            "wholesale_bakery",
                            "wholesale_florist",
                            "wholesale_food_store",
                            "wholesale_grocer",
                            "wholesale_jeweler",
                            "wholesale_market",
                            "wholesale_plant_nursery",
                            "wig_shop",
                            "wildlife_park",
                            "wildlife_refuge",
                            "wildlife_rescue_service",
                            "window_cleaning_service",
                            "window_installation_service",
                            "window_supplier",
                            "window_tinting_service",
                            "window_treatment_store",
                            "winery",
                            "wine_bar",
                            "wine_cellar",
                            "wine_club",
                            "wine_storage_facility",
                            "wine_store",
                            "wine_wholesaler",
                            "wi_fi_spot",
                            "womens_clothing_store",
                            "womens_organization",
                            "womens_personal_trainer",
                            "woodworker",
                            "woodworking_supply_store",
                            "wood_and_laminate_flooring_supplier",
                            "wood_floor_installation_service",
                            "wood_floor_refinishing_service",
                            "wood_stove_shop",
                            "wood_supplier",
                            "work_clothes_store",
                            "wrestling_school",
                            "x_ray_lab",
                            "yacht_broker",
                            "yacht_club",
                            "yarn_store",
                            "yoga_instructor",
                            "yoga_retreat_center",
                            "yoga_studio",
                            "youth_care",
                            "youth_center",
                            "youth_clothing_store",
                            "youth_groups",
                            "youth_social_services_organization",
                            "zoo"
                        ],
                        "type": "string",
                        "description": "Select the business category"
                    },
                    "keyword": {
                        "title": "Don't see your category? Try keyword search in all Google business categories. Category selection will be ignored ",
                        "type": "string",
                        "description": "Optional: Search for any keyword (e.g. teeth whitening, hvac) in business categories. If provided, this takes priority over category."
                    },
                    "country": {
                        "title": "Select Country",
                        "enum": [
                            "ALL",
                            "US",
                            "GB",
                            "AE",
                            "AR",
                            "AU",
                            "BE",
                            "BR",
                            "CA",
                            "DK",
                            "ES",
                            "FI",
                            "FR",
                            "IE",
                            "IN",
                            "IT",
                            "JP",
                            "KR",
                            "MX",
                            "NL",
                            "NO",
                            "PL",
                            "PT",
                            "SA",
                            "SE",
                            "TH",
                            "TR"
                        ],
                        "type": "string",
                        "description": "Choose the country for business leads. Select 'ALL' to search across all supported countries."
                    },
                    "state": {
                        "title": "Select US State If Required",
                        "enum": [
                            "All",
                            "AL",
                            "AK",
                            "AZ",
                            "AR",
                            "CA",
                            "CO",
                            "CT",
                            "DE",
                            "FL",
                            "GA",
                            "HI",
                            "ID",
                            "IL",
                            "IN",
                            "IA",
                            "KS",
                            "KY",
                            "LA",
                            "ME",
                            "MD",
                            "MA",
                            "MI",
                            "MN",
                            "MS",
                            "MO",
                            "MT",
                            "NE",
                            "NV",
                            "NH",
                            "NJ",
                            "NM",
                            "NY",
                            "NC",
                            "ND",
                            "OH",
                            "OK",
                            "OR",
                            "PA",
                            "RI",
                            "SC",
                            "SD",
                            "TN",
                            "TX",
                            "UT",
                            "VT",
                            "VA",
                            "WA",
                            "WV",
                            "WI",
                            "WY"
                        ],
                        "type": "string",
                        "description": "Filter results by US state"
                    },
                    "include_people": {
                        "title": "Include business related personas at additional rate +$1/1000 rows",
                        "type": "boolean",
                        "description": "Add people scraped from business website - owners, decision makers etc at rate +$1/1000 rows"
                    },
                    "verify_emails": {
                        "title": "Verify Emails - Emails will be verified immediately at additional rate +$1/1000 rows",
                        "type": "boolean",
                        "description": "Directly verify emails - - Emails will be verified immediately at additional rate +$1/1000 rows"
                    },
                    "city": {
                        "title": "Enter (part of) city name you'd like to get leads from",
                        "type": "string",
                        "description": "Optional: Filter out leads by searching for string in city field. Eg Washington or just Wash"
                    },
                    "lat": {
                        "title": "latitude",
                        "type": "string",
                        "description": "latitude"
                    },
                    "lon": {
                        "title": "longitude",
                        "type": "string",
                        "description": "longitude"
                    },
                    "area": {
                        "title": "Area Size in km",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Area to look for business in",
                        "default": 10
                    },
                    "max_results": {
                        "title": "Maximum results",
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Maximum number of results to retrieve",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
