# TEST Dach - SANDBOX (`xmiso_scrapers/test-dach-sandbox`) Actor

Do not use

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

## Pricing

from $1.00 / 1,000 lead results

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

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## DACH Region Business Leads with Emails, scraped from Google Maps  
**NEW** 
Now you can verify emails directly from inside this actor at $1/1000 emails, no need to look for other actors.
**🇩🇪 Deutsche Einleitung:**  
Suchen Sie nach einer günstigen Alternative für hochwertige B2B-Leads in Deutschland, Österreich und der Schweiz?  
Unser **DACH Business Leads Scraper** liefert über **2 Millionen geprüfte Geschäftskontakte** direkt aus Google Maps, inklusive **E-Mails und Social-Media-Links** – zu einem Bruchteil der Kosten anderer Anbieter.  

---

The **DACH 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 country (Germany, Austria, Switzerland).  

With **over 2M+ leads** in the database and startin at $0.8/1000 leads, it’s one of the most affordable alternatives


---

### Features

- **2M+ Verified DACH Leads**: Over two million business contacts with emails.  
- **Category or Keyword Search**: Choose from 1000+ business categories or use custom keywords (e.g., "zahnarzt", "it consulting").  
- **Country Filtering**: Target **Germany (DE)**, **Austria (AT)**, or **Switzerland (CH)**.  
- **Social Links Included**: Facebook, Instagram, and LinkedIn when available.  
- **Review Data**: Reviews count and average score included.  
- **Flexible Output**: Download as CSV, Excel, or JSON—ready for CRM or marketing tools.  
- **Up to 50,000 Leads Per Run**: Adjustable `max_results` parameter.  
- **Continuously Updated**: New leads added and verified daily.  

---

### Input Options

| Field         | Type      | Description                                                                                       | Example           |
|---------------|-----------|---------------------------------------------------------------------------------------------------|-------------------|
| `category`    | string    | Predefined business category to scrape (e.g., `bäckerei`, `zahnarzt`). Ignored if `keyword` set.  | `zahnarzt`        |
| `keyword`     | string    | Custom keyword to search all Google Maps business categories.                                     | `steuerberater`   |
| `country`     | string    | `DE`, `AT`, `CH`, or `ALL` for full region.                                                       | `DE`              |
| `max_results` | integer   | Maximum number of results per run (1–50,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": "",
  "country": "DE",
  "max_results": 500
}

# Actor input Schema

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

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

Optional: Search for any keyword (e.g. zahnreinigung, heizung, seo). If provided, this takes priority over category.
## `country` (type: `string`):

Filter results by country. Choose ALL to include Germany (DE), Austria (AT), and Switzerland (CH).
## `verify_emails` (type: `boolean`):

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

Maximum number of results to retrieve

## Actor input object example

```json
{
  "category": "bakery",
  "country": "ALL",
  "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": "ALL",
    "max_results": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("xmiso_scrapers/test-dach-sandbox").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": "ALL",
    "max_results": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("xmiso_scrapers/test-dach-sandbox").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": "ALL",
  "max_results": 100
}' |
apify call xmiso_scrapers/test-dach-sandbox --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "TEST Dach - SANDBOX",
        "description": "Do not use",
        "version": "0.0",
        "x-build-id": "Ln8ef6LG5XWoChlAI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xmiso_scrapers~test-dach-sandbox/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xmiso_scrapers-test-dach-sandbox",
                "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~test-dach-sandbox/runs": {
            "post": {
                "operationId": "runs-sync-xmiso_scrapers-test-dach-sandbox",
                "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~test-dach-sandbox/run-sync": {
            "post": {
                "operationId": "run-sync-xmiso_scrapers-test-dach-sandbox",
                "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": [
                            "accountant",
                            "accounting_firm",
                            "acupuncture_clinic",
                            "acupuncturist",
                            "addiction_treatment_center",
                            "adult_day_care_center",
                            "adult_education_school",
                            "advertising_agency",
                            "advertising_photographer",
                            "aerial_photographer",
                            "after_school_program",
                            "agricultural_service",
                            "airport",
                            "airport_shuttle_service",
                            "air_conditioning_contractor",
                            "air_conditioning_repair_service",
                            "air_conditioning_system_supplier",
                            "air_duct_cleaning_service",
                            "alcoholism_treatment_program",
                            "allergist",
                            "alternative_medicine_practitioner",
                            "american_restaurant",
                            "amusement_center",
                            "anesthesiologist",
                            "animal_hospital",
                            "antique_store",
                            "apartment_building",
                            "apartment_complex",
                            "apartment_rental_agency",
                            "appliance_repair_service",
                            "appliance_store",
                            "appraiser",
                            "architect",
                            "architectural_designer",
                            "architecture_firm",
                            "artist",
                            "arts_organization",
                            "art_center",
                            "art_gallery",
                            "art_school",
                            "art_studio",
                            "asian_fusion_restaurant",
                            "asian_restaurant",
                            "asphalt_contractor",
                            "assisted_living_facility",
                            "association_or_organization",
                            "athletic_field",
                            "auction_house",
                            "audiologist",
                            "audio_visual_consultant",
                            "audio_visual_equipment_supplier",
                            "automation_company",
                            "automobile_storage_facility",
                            "auto_air_conditioning_service",
                            "auto_bodywork_mechanic",
                            "auto_body_parts_supplier",
                            "auto_body_shop",
                            "auto_broker",
                            "auto_dent_removal_service",
                            "auto_electrical_service",
                            "auto_glass_shop",
                            "auto_insurance_agency",
                            "auto_painting",
                            "auto_parts_market",
                            "auto_parts_store",
                            "auto_radiator_repair_service",
                            "auto_repair_shop",
                            "auto_restoration_service",
                            "auto_tune_up_service",
                            "auto_wrecker",
                            "baby_clothing_store",
                            "baby_store",
                            "bagel_shop",
                            "bakery",
                            "bank",
                            "bankruptcy_attorney",
                            "banner_store",
                            "banquet_hall",
                            "bar",
                            "barbecue_restaurant",
                            "barber_shop",
                            "bar_and_grill",
                            "bathroom_remodeler",
                            "bathroom_supply_store",
                            "battery_store",
                            "beautician",
                            "beauty_product_supplier",
                            "beauty_salon",
                            "beauty_supply_store",
                            "bedding_store",
                            "bedroom_furniture_store",
                            "bed_and_breakfast",
                            "beer_store",
                            "bicycle_repair_shop",
                            "bicycle_sharing_location",
                            "bicycle_store",
                            "biotechnology_company",
                            "boat_dealer",
                            "boat_ramp",
                            "boat_rental_service",
                            "boat_repair_shop",
                            "boat_storage_facility",
                            "bookkeeping_service",
                            "book_publisher",
                            "book_store",
                            "bottled_water_supplier",
                            "boutique",
                            "brake_shop",
                            "breakfast_restaurant",
                            "brewery",
                            "bridal_shop",
                            "brunch_restaurant",
                            "bubble_tea_store",
                            "buffet_restaurant",
                            "building_materials_store",
                            "building_materials_supplier",
                            "building_restoration_service",
                            "burrito_restaurant",
                            "business_banking_service",
                            "business_center",
                            "business_development_service",
                            "business_management_consultant",
                            "business_networking_company",
                            "business_to_business_service",
                            "butcher_shop",
                            "cabinet_maker",
                            "cabinet_store",
                            "cable_company",
                            "cafe",
                            "cake_shop",
                            "camp",
                            "campground",
                            "candle_store",
                            "candy_store",
                            "cannabis_store",
                            "cardiologist",
                            "carpenter",
                            "carpet_cleaning_service",
                            "carpet_installer",
                            "carpet_store",
                            "car_accessories_store",
                            "car_battery_store",
                            "car_dealer",
                            "car_detailing_service",
                            "car_finance_and_loan_company",
                            "car_inspection_station",
                            "car_leasing_service",
                            "car_rental_agency",
                            "car_repair",
                            "car_service",
                            "car_stereo_store",
                            "car_wash",
                            "catering_food_and_drink_supplies",
                            "catering_service",
                            "cell_phone_accessory_store",
                            "cell_phone_store",
                            "certified_public_accountant",
                            "check_cashing_service",
                            "chicken_restaurant",
                            "chicken_wings_restaurant",
                            "childrens_clothing_store",
                            "childrens_furniture_store",
                            "childrens_party_service",
                            "child_care_agency",
                            "child_psychologist",
                            "chimney_sweep",
                            "chinese_restaurant",
                            "chiropractor",
                            "chocolate_shop",
                            "cigar_shop",
                            "city_park",
                            "civil_engineer",
                            "civil_law_attorney",
                            "cleaners",
                            "cleaning_service",
                            "clothing_alteration_service",
                            "clothing_store",
                            "club",
                            "coaching_center",
                            "cocktail_bar",
                            "coffee_roasters",
                            "coffee_shop",
                            "coffee_store",
                            "collectibles_store",
                            "commercial_agent",
                            "commercial_printer",
                            "commercial_real_estate_agency",
                            "community_center",
                            "community_health_center",
                            "computer_consultant",
                            "computer_repair_service",
                            "computer_security_service",
                            "computer_service",
                            "computer_store",
                            "computer_support_and_services",
                            "concrete_contractor",
                            "condominium_complex",
                            "conference_center",
                            "consignment_shop",
                            "construction",
                            "construction_company",
                            "construction_equipment_supplier",
                            "consultant",
                            "contact_lenses_supplier",
                            "contractor",
                            "convenience_store",
                            "cookie_shop",
                            "copy_shop",
                            "corporate_office",
                            "cosmetics_store",
                            "cosmetic_dentist",
                            "counselor",
                            "countertop_store",
                            "courier_service",
                            "coworking_space",
                            "craft_store",
                            "credit_counseling_service",
                            "credit_union",
                            "cremation_service",
                            "criminal_law_attorney",
                            "crypto_atm",
                            "cupcake_shop",
                            "currency_exchange_service",
                            "custom_home_builder",
                            "custom_t_shirt_store",
                            "dance_company",
                            "dance_school",
                            "data_recovery_service",
                            "day_care_center",
                            "day_spa",
                            "debris_removal_service",
                            "deck_builder",
                            "deli",
                            "delivery_service",
                            "demolition_contractor",
                            "dental_clinic",
                            "dental_hygienist",
                            "dental_implants_periodontist",
                            "dental_implants_provider",
                            "dental_lab",
                            "dentist",
                            "denture_care_center",
                            "department_of_motor_vehicles",
                            "department_store",
                            "dermatologist",
                            "design_agency",
                            "dessert_restaurant",
                            "dessert_shop",
                            "diagnostic_center",
                            "diamond_dealer",
                            "diesel_engine_repair_service",
                            "diesel_fuel_supplier",
                            "digital_printer",
                            "digital_printing_service",
                            "diner",
                            "disability_services_and_support_organization",
                            "discount_store",
                            "distribution_service",
                            "divorce_attorney",
                            "dj",
                            "doctor",
                            "dog_breeder",
                            "dog_day_care_center",
                            "dog_trainer",
                            "dog_walker",
                            "dollar_store",
                            "donations_center",
                            "donut_shop",
                            "door_supplier",
                            "drainage_service",
                            "drilling_contractor",
                            "driving_school",
                            "drugstore",
                            "drug_testing_service",
                            "dry_cleaner",
                            "dry_wall_contractor",
                            "dumpster_rental_service",
                            "dvd_store",
                            "educational_consultant",
                            "educational_institution",
                            "elder_law_attorney",
                            "electrical_installation_service",
                            "electrical_supply_store",
                            "electrician",
                            "electric_utility_company",
                            "electric_vehicle_charging_station",
                            "electronics_manufacturer",
                            "electronics_repair_shop",
                            "electronics_store",
                            "electronic_parts_supplier",
                            "embroidery_service",
                            "embroidery_shop",
                            "emergency_care_physician",
                            "emergency_care_service",
                            "emergency_dental_service",
                            "emergency_locksmith_service",
                            "emergency_room",
                            "employment_agency",
                            "employment_attorney",
                            "endocrinologist",
                            "endodontist",
                            "engineer",
                            "engineering_consultant",
                            "engine_rebuilding_service",
                            "engraver",
                            "entertainer",
                            "entertainment",
                            "entertainment_agency",
                            "environmental_consultant",
                            "equipment_rental_agency",
                            "equipment_supplier",
                            "espresso_bar",
                            "establishment",
                            "establishment_service",
                            "estate_planning_attorney",
                            "event_management_company",
                            "event_planner",
                            "event_venue",
                            "excavating_contractor",
                            "extended_stay_hotel",
                            "eyebrow_bar",
                            "eyelash_salon",
                            "eye_care_center",
                            "e_commerce_service",
                            "fabric_store",
                            "facial_spa",
                            "family_counselor",
                            "family_day_care_service",
                            "family_law_attorney",
                            "family_practice_physician",
                            "family_restaurant",
                            "farm",
                            "farmers_market",
                            "farm_equipment_supplier",
                            "farm_shop",
                            "fashion_accessories_store",
                            "fashion_designer",
                            "fast_food_restaurant",
                            "feed_store",
                            "fence_contractor",
                            "film_production_company",
                            "finance_broker",
                            "financial_advisor",
                            "financial_consultant",
                            "financial_institution",
                            "financial_planner",
                            "fireworks_store",
                            "fire_damage_restoration_service",
                            "fire_protection_service",
                            "fishing_charter",
                            "fishing_store",
                            "fitness_center",
                            "flooring_contractor",
                            "flooring_store",
                            "floor_refinishing_service",
                            "florist",
                            "flower_delivery",
                            "flower_designer",
                            "food_bank",
                            "food_manufacturer",
                            "food_producer",
                            "food_products_supplier",
                            "foundation",
                            "fraternal_organization",
                            "freight_forwarding_service",
                            "fried_chicken_takeaway",
                            "frozen_yogurt_shop",
                            "fuel_supplier",
                            "funeral_home",
                            "furnace_repair_service",
                            "furniture_maker",
                            "furniture_rental_service",
                            "furniture_store",
                            "fusion_restaurant",
                            "game_store",
                            "garage_builder",
                            "garage_door_supplier",
                            "garbage_collection_service",
                            "garbage_dump",
                            "garbage_dump_service",
                            "garden_center",
                            "gastroenterologist",
                            "gas_company",
                            "gas_station",
                            "general_contractor",
                            "general_practice_attorney",
                            "general_practitioner",
                            "general_store",
                            "geriatrician",
                            "gift_basket_store",
                            "gift_shop",
                            "glass_and_mirror_shop",
                            "glass_repair_service",
                            "glass_shop",
                            "gluten_free_restaurant",
                            "gold_dealer",
                            "golf_club",
                            "golf_course",
                            "gourmet_grocery_store",
                            "government",
                            "granite_supplier",
                            "graphic_designer",
                            "greenhouse",
                            "greeting_card_shop",
                            "grocery_delivery_service",
                            "grocery_store",
                            "gun_shop",
                            "gutter_cleaning_service",
                            "gym",
                            "gymnastics_center",
                            "gynecologist",
                            "hair_extensions_supplier",
                            "hair_extension_technician",
                            "hair_removal_service",
                            "hair_salon",
                            "hamburger_restaurant",
                            "handyman",
                            "hardware_store",
                            "health",
                            "health_and_beauty_shop",
                            "health_consultant",
                            "health_food_restaurant",
                            "health_food_store",
                            "health_insurance_agency",
                            "health_spa",
                            "hearing_aid_repair_service",
                            "hearing_aid_store",
                            "heating_contractor",
                            "heating_equipment_supplier",
                            "hematologist",
                            "herbal_medicine_store",
                            "herb_shop",
                            "hobby_store",
                            "holistic_medicine_practitioner",
                            "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",
                            "horse_boarding_stable",
                            "horse_trainer",
                            "hospice",
                            "hotel",
                            "house_cleaning_service",
                            "housing_authority",
                            "housing_complex",
                            "housing_development",
                            "human_ressource_consulting",
                            "hvac_contractor",
                            "hypnotherapy_service",
                            "ice_cream_shop",
                            "immigration_attorney",
                            "indian_restaurant",
                            "indoor_playground",
                            "industrial_equipment_supplier",
                            "infectious_disease_physician",
                            "information_services",
                            "inn",
                            "insulation_contractor",
                            "insurance_agency",
                            "insurance_attorney",
                            "insurance_broker",
                            "insurance_company",
                            "intensivist",
                            "interior_designer",
                            "internet_cafe",
                            "internet_marketing_service",
                            "internet_service_provider",
                            "internist",
                            "investment_company",
                            "investment_service",
                            "italian_restaurant",
                            "janitorial_service",
                            "japanese_restaurant",
                            "jeweler",
                            "jewelry_appraiser",
                            "jewelry_buyer",
                            "jewelry_designer",
                            "jewelry_repair_service",
                            "jewelry_store",
                            "juice_shop",
                            "kennel",
                            "key_duplication_service",
                            "kiosk",
                            "kitchen_remodeler",
                            "kitchen_supply_store",
                            "laboratory",
                            "landscaper",
                            "landscape_architect",
                            "landscape_designer",
                            "landscape_lighting_designer",
                            "landscaping_supply_store",
                            "land_surveyor",
                            "laser_hair_removal_service",
                            "latin_american_restaurant",
                            "laundromat",
                            "laundry",
                            "laundry_service",
                            "lawn_care_service",
                            "lawn_mower_repair_service",
                            "lawn_mower_store",
                            "lawn_sprinkler_system_contractor",
                            "lawyer",
                            "law_firm",
                            "learning_center",
                            "leather_goods_store",
                            "legal_services",
                            "life_coach",
                            "life_insurance_agency",
                            "lighting_store",
                            "limousine_service",
                            "lingerie_store",
                            "liquor_store",
                            "live_music_venue",
                            "loan_agency",
                            "local_government_office",
                            "locksmith",
                            "lodge",
                            "logical_transit_station",
                            "logistics_service",
                            "lottery_retailer",
                            "lounge",
                            "lumber_store",
                            "lunch_restaurant",
                            "machine_shop",
                            "mailbox_rental_service",
                            "mailing_service",
                            "makeup_artist",
                            "manufacturer",
                            "marina",
                            "marine_supply_store",
                            "market",
                            "marketing_agency",
                            "marketing_consultant",
                            "marriage_counselor",
                            "martial_arts_school",
                            "masonry_contractor",
                            "massage_spa",
                            "massage_therapist",
                            "material_handling_equipment_supplier",
                            "mattress_store",
                            "meal_delivery",
                            "meal_takeaway",
                            "mechanic",
                            "mechanical_contractor",
                            "mediation_service",
                            "media_company",
                            "medical_center",
                            "medical_clinic",
                            "medical_diagnostic_imaging_center",
                            "medical_equipment_supplier",
                            "medical_group",
                            "medical_lab",
                            "medical_office",
                            "medical_spa",
                            "medical_supply_store",
                            "mediterranean_restaurant",
                            "mens_clothing_store",
                            "mental_health_clinic",
                            "mental_health_service",
                            "metal_fabricator",
                            "metaphysical_supply_store",
                            "mexican_grocery_store",
                            "mexican_restaurant",
                            "midwife",
                            "mobile_catering",
                            "mobile_home_park",
                            "mobile_phone_repair_shop",
                            "money_order_service",
                            "money_transfer_service",
                            "mortgage_broker",
                            "mortgage_lender",
                            "motel",
                            "motorcycle_dealer",
                            "motorcycle_insurance_agency",
                            "motorcycle_parts_store",
                            "motorcycle_repair_shop",
                            "motor_vehicle_dealer",
                            "movie_rental",
                            "movie_rental_kiosk",
                            "movie_rental_store",
                            "movie_theater",
                            "moving_and_storage_service",
                            "moving_company",
                            "moving_supply_store",
                            "muffler_shop",
                            "mulch_supplier",
                            "musical_instrument_store",
                            "musician",
                            "music_instructor",
                            "music_producer",
                            "music_school",
                            "music_store",
                            "nail_salon",
                            "nature_preserve",
                            "naturopathic_practitioner",
                            "nephrologist",
                            "neurologist",
                            "neurosurgeon",
                            "newspaper_publisher",
                            "night_club",
                            "notary_public",
                            "novelty_store",
                            "nurse_practitioner",
                            "nursing_agency",
                            "nursing_home",
                            "nutritionist",
                            "obstetrics_gynecology_clinic",
                            "occupational_therapist",
                            "office_furniture_store",
                            "office_space_rental_agency",
                            "office_supply_store",
                            "oil_change_service",
                            "oncologist",
                            "ophthalmologist",
                            "optician",
                            "optometrist",
                            "oral_surgeon",
                            "orthodontist",
                            "orthopedic_clinic",
                            "orthopedic_surgeon",
                            "orthotics_and_prosthetics_service",
                            "otolaryngologist",
                            "outdoor_furniture_store",
                            "outdoor_sports_store",
                            "outlet_store",
                            "packaging_company",
                            "packaging_supply_store",
                            "painter",
                            "painting",
                            "paint_store",
                            "pain_control_clinic",
                            "pain_management_physician",
                            "parking_garage",
                            "party_equipment_rental_service",
                            "party_planner",
                            "party_store",
                            "passport_office",
                            "passport_photo_processor",
                            "pastry_shop",
                            "pathologist",
                            "paving_contractor",
                            "pawn_shop",
                            "payroll_service",
                            "pediatrician",
                            "pediatric_dentist",
                            "performing_arts_theater",
                            "perfume_store",
                            "periodontist",
                            "permanent_make_up_clinic",
                            "personal_injury_lawyer",
                            "personal_trainer",
                            "pest_control_service",
                            "pet_boarding_service",
                            "pet_groomer",
                            "pet_sitter",
                            "pet_store",
                            "pet_supply_store",
                            "pharmaceutical_company",
                            "pharmacy",
                            "phone_repair_service",
                            "photographer",
                            "photography_service",
                            "photography_studio",
                            "photo_booth",
                            "photo_lab",
                            "photo_shop",
                            "physiatrist",
                            "physical_fitness_program",
                            "physician_assistant",
                            "physiotherapist",
                            "physiotherapy_center",
                            "piano_instructor",
                            "picture_frame_shop",
                            "pilates_studio",
                            "pipe_supplier",
                            "pizzatakeaway",
                            "pizza_delivery_service",
                            "pizza_restaurant",
                            "place_of_worship",
                            "plant_nursery",
                            "plastic_fabrication_company",
                            "plastic_surgeon",
                            "plastic_surgery_clinic",
                            "plumber",
                            "plumbing_supply_store",
                            "podiatrist",
                            "police_department",
                            "pool_cleaning_service",
                            "portrait_studio",
                            "pregnancy_care_center",
                            "pressure_washing_service",
                            "print_shop",
                            "private_investigator",
                            "private_school",
                            "produce_market",
                            "professional_organizer",
                            "promotional_products_supplier",
                            "propane_supplier",
                            "property_investment",
                            "property_maintenance",
                            "property_management_company",
                            "psychiatrist",
                            "psychic",
                            "psychologist",
                            "psychotherapist",
                            "pub",
                            "public_bathroom",
                            "public_health_department",
                            "public_relations_firm",
                            "publisher",
                            "pulmonologist",
                            "racing_car_parts_store",
                            "radiologist",
                            "radio_broadcaster",
                            "ranch",
                            "ready_mix_concrete_supplier",
                            "real_estate",
                            "real_estate_agency",
                            "real_estate_agents",
                            "real_estate_appraiser",
                            "real_estate_attorney",
                            "real_estate_consultant",
                            "real_estate_developer",
                            "real_estate_rental_agency",
                            "recording_studio",
                            "record_storage_facility",
                            "recreation_center",
                            "recruiter",
                            "recycling_center",
                            "reflexologist",
                            "refrigerator_repair_service",
                            "registered_general_nurse",
                            "rehabilitation_center",
                            "reiki_therapist",
                            "remodeler",
                            "renters_insurance_agency",
                            "repair_service",
                            "research_institute",
                            "resort_hotel",
                            "restaurant",
                            "restaurant_supply_store",
                            "retirement_community",
                            "retirement_home",
                            "rheumatologist",
                            "roofing_contractor",
                            "roofing_supply_store",
                            "rug_store",
                            "rv_park",
                            "rv_repair_shop",
                            "rv_storage_facility",
                            "safety_equipment_supplier",
                            "salad_shop",
                            "sandwich_shop",
                            "sand_and_gravel_supplier",
                            "screen_printer",
                            "screen_printing_shop",
                            "screen_repair_service",
                            "seafood_market",
                            "seafood_restaurant",
                            "security_guard_service",
                            "security_service",
                            "security_system_installer",
                            "security_system_supplier",
                            "self_defense_school",
                            "self_storage_facility",
                            "senior_citizen_center",
                            "septic_system_service",
                            "sheet_metal_contractor",
                            "shipping_and_mailing_service",
                            "shipping_company",
                            "shipping_service",
                            "shoe_store",
                            "shopping_center",
                            "shredding_service",
                            "siding_contractor",
                            "sign_shop",
                            "skin_care_clinic",
                            "sleep_clinic",
                            "small_engine_repair_service",
                            "smoke_shop",
                            "snack_bar",
                            "snow_removal_service",
                            "social_worker",
                            "software_company",
                            "solar_energy_company",
                            "solar_energy_equipment_supplier",
                            "southern_us_restaurant",
                            "spa",
                            "speech_pathologist",
                            "sporting_goods_store",
                            "sportswear_store",
                            "sports_bar",
                            "sports_club",
                            "sports_complex",
                            "sports_massage_therapist",
                            "sports_medicine_clinic",
                            "sports_medicine_physician",
                            "sports_school",
                            "stable",
                            "state_government_office",
                            "stationery_store",
                            "steak_house",
                            "steel_fabricator",
                            "stereo_store",
                            "stock_broker",
                            "stone_supplier",
                            "storage_facility",
                            "store",
                            "structural_engineer",
                            "student_housing_center",
                            "summer_camp",
                            "sunglasses_store",
                            "supermarket",
                            "surgeon",
                            "surgical_center",
                            "surveyor",
                            "sushi_restaurant",
                            "swimming_pool",
                            "swimming_pool_contractor",
                            "swimming_pool_repair_service",
                            "swimming_pool_supply_store",
                            "swimwear_store",
                            "taco_restaurant",
                            "tailor",
                            "tanning_studio",
                            "tattoo_shop",
                            "taxi_service",
                            "tax_consultant",
                            "tax_preparation",
                            "tax_preparation_service",
                            "tea_house",
                            "tea_store",
                            "teeth_whitening_service",
                            "telecommunications_service_provider",
                            "telephone_company",
                            "television_repair_service",
                            "television_station",
                            "temp_agency",
                            "tennis_court",
                            "tex_mex_restaurant",
                            "thai_restaurant",
                            "thrift_store",
                            "tile_contractor",
                            "tile_store",
                            "tire_repair_shop",
                            "tire_shop",
                            "title_company",
                            "tobacco_shop",
                            "tool_rental_service",
                            "tool_store",
                            "topsoil_supplier",
                            "tour_agency",
                            "tour_operator",
                            "towing_service",
                            "toy_store",
                            "trading_card_store",
                            "trailer_dealer",
                            "trailer_rental_service",
                            "trailer_repair_shop",
                            "trailer_supply_store",
                            "training_center",
                            "translator",
                            "transmission_shop",
                            "transportation_service",
                            "travel_agency",
                            "tree_service",
                            "trial_attorney",
                            "trucking_company",
                            "truck_accessories_store",
                            "truck_dealer",
                            "truck_parts_supplier",
                            "truck_rental_agency",
                            "truck_repair_shop",
                            "truck_stop",
                            "tutoring_service",
                            "t_shirt_store",
                            "uniform_store",
                            "unisex_hairdresser",
                            "university_department",
                            "upholstery_cleaning_service",
                            "upholstery_shop",
                            "urgent_care_center",
                            "urologist",
                            "used_car_dealer",
                            "used_tire_shop",
                            "used_truck_dealer",
                            "vacation_home_rental_agency",
                            "van_rental_agency",
                            "vaporizer_store",
                            "variety_store",
                            "vascular_surgeon",
                            "vegan_restaurant",
                            "vegetarian_restaurant",
                            "vehicle_wrapping_service",
                            "vending_machine_supplier",
                            "veterans_organization",
                            "veterinarian",
                            "video_arcade",
                            "video_editing_service",
                            "video_game_store",
                            "video_production_service",
                            "vietnamese_restaurant",
                            "vintage_clothing_store",
                            "virtual_office_rental",
                            "vitamin_and_supplements_store",
                            "walk_in_clinic",
                            "warehouse",
                            "waste_management_service",
                            "watch_repair_service",
                            "watch_store",
                            "water_damage_restoration_service",
                            "water_softening_equipment_supplier",
                            "water_utility_company",
                            "waxing_hair_removal_service",
                            "website_designer",
                            "web_hosting_service",
                            "wedding_photographer",
                            "wedding_planner",
                            "wedding_service",
                            "wedding_store",
                            "wedding_venue",
                            "weight_loss_service",
                            "welder",
                            "welding_supply_store",
                            "wellness_center",
                            "wellness_program",
                            "well_drilling_contractor",
                            "wheel_alignment_service",
                            "wheel_store",
                            "wholesaler",
                            "wig_shop",
                            "window_cleaning_service",
                            "window_installation_service",
                            "window_supplier",
                            "window_tinting_service",
                            "window_treatment_store",
                            "winery",
                            "wine_bar",
                            "wine_store",
                            "womens_clothing_store",
                            "woodworker",
                            "wood_floor_installation_service",
                            "wood_floor_refinishing_service",
                            "yoga_instructor",
                            "yoga_studio"
                        ],
                        "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. zahnreinigung, heizung, seo). If provided, this takes priority over category."
                    },
                    "country": {
                        "title": "Select country (DE/AT/CH)",
                        "enum": [
                            "ALL",
                            "DE",
                            "AT",
                            "CH"
                        ],
                        "type": "string",
                        "description": "Filter results by country. Choose ALL to include Germany (DE), Austria (AT), and Switzerland (CH)."
                    },
                    "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"
                    },
                    "max_results": {
                        "title": "Maximum results",
                        "maximum": 50000,
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
