# DeTelefoongids (Dutch Business Directory) Scraper (`crawlerbros/detelefoongids-scraper`) Actor

Scrape Telefoonboek.nl, the Netherlands' official business and phone directory. Search by trade/category and city, or fetch business detail pages directly. Get name, address, phone, category, rating, opening hours, website and more - no login required.

- **URL**: https://apify.com/crawlerbros/detelefoongids-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## DeTelefoongids (Dutch Business Directory) Scraper

Scrape [Telefoonboek.nl](https://www.telefoonboek.nl), the Netherlands' business and phone directory. Search any keyword, browse curated business categories, or fetch specific business detail pages — no login, no cookies, no API key required.

### Data Source

The originally requested target, `detelefoongids.nl` (and its sister site `goudengids.nl`), is protected by an Incapsula WAF that returns a hard `403 Forbidden` on every request — including plain HTTP, `curl_cffi` Chrome-131 impersonation, and requests from a clean residential IP (not just Apify's datacenter ranges). Two other candidate Dutch directories (`cylex.nl`, `opendi.nl`) are behind Cloudflare's JS challenge and are equally unreachable without a paid browser-farm/residential-proxy service. Per this project's zero-cost policy, none of these are viable.

This actor instead scrapes **Telefoonboek.nl**, the Netherlands' other major, publicly maintained business and phone directory — confirmed fully accessible with plain HTTP requests, no proxy, no anti-bot friction across repeated tests.

### What this actor does

- **Three modes:** `search` (free-text keyword, nationwide or city-scoped), `byCategory` (browse one of 50 curated trade/service categories), `byUrl` (fetch specific business detail pages)
- **Rich business data:** name, full address (street/city/postal code), GPS coordinates, phone, website, rating, review count
- **Optional deep enrichment:** turn on `fetchDetails` to additionally pull the business's category, description, full per-day opening hours, a secondary phone number, and verified/claimed status from each business's detail page
- **Filters:** city/town filter, minimum rating, verified-only, free-text keyword filter
- **Empty fields are omitted** — every record only contains data actually found for that business
- **Full Dutch UTF-8 diacritics support** — city names, addresses, and descriptions are preserved exactly

### Output per business

- `businessId`, `sourceUrl` — unique ID and canonical Telefoonboek.nl detail-page URL
- `name`
- `category` *(detail only)* — trade/service tag (e.g. `Bouw`, `Restaurant`)
- `street`, `postalCode`, `city`, `fullAddress`
- `latitude`, `longitude`
- `phone`, `phoneSecondary` *(detail only)*, `website`
- `rating` (0-10 scale), `reviewCount`
- `verified` (boolean) *(detail only)* — business has claimed/verified its own listing
- `openingHours[]` — per-day breakdown `{day, dayEn, hours}` *(detail only)*
- `description` *(detail only)*
- `recordType: "business"`, `scrapedAt`

*(detail only)* fields are only populated when `fetchDetails: true` is set (search/byCategory modes) or when using `mode: byUrl`.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `search` | `search` / `byCategory` / `byUrl` |
| `searchQuery` | string | `restaurant` | Free-text keyword (mode=search) |
| `category` | string | `aannemer` | Any Telefoonboek.nl trade/category term (mode=byCategory); 50 curated examples listed in the field description |
| `mainCategory` | string | – | Refine `search`/`byCategory` results using one of Telefoonboek.nl's own dynamic sub-category facets (e.g. `restaurant` search exposes `cafe`, `snackbar`, `hotel`) |
| `city` | string | – | Restrict results to a Dutch city/town; works with any mode |
| `urls` | array | – | Telefoonboek.nl detail-page URLs (mode=byUrl) |
| `keyword` | string | – | Keep only results whose name/description/category contain this text |
| `minRating` | number | – | Drop businesses rated below this (0-10) |
| `verifiedOnly` | boolean | `false` | Only businesses with a claimed/verified listing (detail data required) |
| `fetchDetails` | boolean | `false` | Visit each business's detail page for category, description, full hours, secondary phone, and verified status (1 extra request per business) |
| `maxItems` | integer | `30` | Hard cap (1-500) |
| `proxyConfiguration` | object | – | Optional; telefoonboek.nl works without a proxy, the actor auto-escalates to the free AUTO group on 403/429 |

#### Example: search with city + rating filter

```json
{
  "mode": "search",
  "searchQuery": "restaurant",
  "city": "Rotterdam",
  "minRating": 7,
  "maxItems": 50
}
````

#### Example: browse a category nationwide, with full detail enrichment

```json
{
  "mode": "byCategory",
  "category": "kapper",
  "fetchDetails": true,
  "maxItems": 100
}
```

#### Example: fetch specific business pages

```json
{
  "mode": "byUrl",
  "urls": [
    "https://www.telefoonboek.nl/bedrijven/t4249019/krommenie/schleich-bouw-b.v/"
  ]
}
```

### Use cases

- **Lead generation** — build prospect lists of Dutch businesses by trade and city
- **Market research** — analyze business density, ratings, and coverage by city or category
- **Directory aggregation** — mirror or cross-reference Dutch business listings
- **Local SEO audits** — check a business's own directory data (address, phone, hours) for accuracy
- **Competitive analysis** — compare ratings and review counts across competitors in a category

### FAQ

**Do I need a Telefoonboek.nl account?** No. Search, category browsing, and business detail pages are all publicly accessible without an account.

**Is this the same as detelefoongids.nl?** No — see the "Data Source" section above. detelefoongids.nl is blocked by Incapsula bot protection; this actor scrapes Telefoonboek.nl, a comparable Dutch business/phone directory with the same data model (name, address, phone, category, rating, opening hours).

**Does the `city` filter guarantee I only get businesses in that city?** It combines two mechanisms: the `city` value is folded directly into telefoonboek.nl's own city-scoped URL (e.g. `/zoeken/restaurant/rotterdam/`), and a diacritics-insensitive client-side check is applied afterward as a safety net against any stray out-of-city result the source itself may mix in.

**Why is `rating` on a 0-10 scale?** Telefoonboek.nl's own rating widget natively uses a 0-10 scale, unlike some directories that use 0-5 stars.

**What does `verified` mean?** Telefoonboek.nl shows a "Geverifieerd" badge on business detail pages whose owner has claimed and confirmed the listing. This is only visible on the detail page, so `fetchDetails: true` (or `mode: byUrl`) is required to populate it.

**Can I browse categories not in the dropdown examples?** Yes — type any Telefoonboek.nl trade/category term into the `category` field (anything you find while browsing `telefoonboek.nl/rubrieken/`). The field description lists 50 curated, high-traffic examples for convenience.

**Why does a `website` URL sometimes fail a plain `curl -I` check?** The `website` field links to each business's own external site, not to Telefoonboek.nl. Some small-business sites block simple bot HEAD requests (common shared-hosting/WAF behavior) while working fine in any real browser or a full GET request. `sourceUrl` (the Telefoonboek.nl detail page) is always directly verifiable.

**How fresh is the data?** Telefoonboek.nl listings are maintained by business owners and the platform's own data team; most information (phone, ratings, reviews, hours) reflects the live site at scrape time.

**Is this actor affiliated with Telefoonboek.nl?** No. This is an independent, third-party actor that reads Telefoonboek.nl's publicly available pages. It is not affiliated with, endorsed by, or sponsored by Telefoonboek.nl or its operator.

# Actor input Schema

## `mode` (type: `string`):

What to fetch.

## `searchQuery` (type: `string`):

Free-text keyword: a trade/profession, business name, or brand ("restaurant", "loodgieter", "Albert Heijn").

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

A Telefoonboek.nl trade/category search term. Type any term you find while browsing the site's category index at telefoonboek.nl/rubrieken/, or copy one of the 50 curated examples below into the field.

Curated examples:
`aannemer` (Contractor), `accountant` (Accountant), `acupunctuur` (Acupuncture), `administratiekantoor` (Bookkeeping office), `adviesbureau` (Consultancy), `advocaat` (Lawyer), `afvalverwerking` (Waste processing), `alarminstallatie` (Alarm installation), `antiek` (Antiques), `apotheek` (Pharmacy), `arbodienst` (Occupational health service), `architect` (Architect), `audio-en-video` (Audio & video), `auto-onderdelen` (Car parts), `autobedrijf` (Car garage), `autolease` (Car leasing), `automatisering` (IT/automation), `autosloperij` (Car scrapyard), `autoverhuur` (Car rental), `autoverkoop` (Car dealer), `bakker` (Bakery), `bank` (Bank), `basisschool` (Primary school), `bouw` (Construction), `cafe` (Café), `camping` (Camping), `catering` (Catering), `dierenarts` (Veterinarian), `elektricien` (Electrician), `fysiotherapeut` (Physiotherapist), `garage` (Garage), `hotel` (Hotel), `huisarts` (General practitioner), `installatiebedrijf` (Installation company), `kapper` (Hairdresser), `loodgieter` (Plumber), `makelaar` (Real estate agent), `notaris` (Notary), `restaurant` (Restaurant), `schilder` (Painter), `schoonmaakbedrijf` (Cleaning company), `supermarkt` (Supermarket), `tandarts` (Dentist), `taxi` (Taxi), `uitvaartverzorging` (Funeral services), `verhuisbedrijf` (Moving company), `verzekeringen` (Insurance), `videotheek` (Video rental), `vloerenbedrijf` (Flooring company), `webdesign` (Web design), `ziekenhuis` (Hospital)

## `mainCategory` (type: `string`):

Narrow results using one of telefoonboek.nl's own results-page category facets, e.g. searching `restaurant` exposes sub-facets like `cafe`, `snackbar`, `hotel`, `catering`. These facets are computed per search query, so there is no fixed global list — run once without this field, check each result's `category`/`fullAddress` for the trade you want, then re-run with that slugified term here (spaces -> hyphens, lowercase, e.g. `groothandel-in-voedingsmiddelen`). Leave empty for unrefined results.

## `city` (type: `string`):

Restrict results to a Dutch city or town, matching telefoonboek.nl's own city-scoped URLs. Works with any mode. Leave empty for nationwide results. Any valid Dutch town name is accepted; common examples: `Amsterdam`, `Rotterdam`, `Den Haag`, `Utrecht`, `Eindhoven`, `Groningen`, `Tilburg`, `Almere`, `Breda`, `Nijmegen`, `Apeldoorn`, `Haarlem`, `Arnhem`, `Enschede`, `Amersfoort`, `Zaanstad`, `Den Bosch`, `Zwolle`, `Zoetermeer`, `Leiden`, `Maastricht`, `Dordrecht`, `Ede`, `Leeuwarden`, `Alkmaar`, `Emmen`, `Delft`, `Venlo`, `Deventer`, `Helmond`.

## `urls` (type: `array`):

Full telefoonboek.nl detail-page URLs, e.g. `https://www.telefoonboek.nl/bedrijven/t4249019/krommenie/schleich-bouw-b.v/`.

## `keyword` (type: `string`):

Only keep results whose name, description, or category contain this text (case- and diacritics-insensitive).

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

Drop businesses with a review rating below this value. Telefoonboek.nl rates businesses on a 0-10 scale (not 0-5).

## `verifiedOnly` (type: `boolean`):

Only emit businesses marked "Geverifieerd" (claimed/verified listing) on telefoonboek.nl. Only detectable on detail pages — combine with `fetchDetails: true` (or use mode=byUrl) for this filter to take effect.

## `fetchDetails` (type: `boolean`):

For search/byCategory modes: visit each business's detail page to also collect category, description, full per-day opening hours, a secondary phone number, and verified status. Slower (1 extra request per business).

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

Hard cap on emitted records.

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

Optional proxy settings. Leave empty to use no proxy — telefoonboek.nl is publicly accessible without one. The actor automatically escalates to the free AUTO datacenter proxy group if it hits a 403/429.

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "restaurant",
  "category": "aannemer",
  "urls": [],
  "verifiedOnly": false,
  "fetchDetails": false,
  "maxItems": 30
}
```

# Actor output Schema

## `businesses` (type: `string`):

Dataset containing all scraped Dutch businesses.

# 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 = {
    "mode": "search",
    "searchQuery": "restaurant",
    "category": "aannemer",
    "urls": [],
    "verifiedOnly": false,
    "fetchDetails": false,
    "maxItems": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/detelefoongids-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "search",
    "searchQuery": "restaurant",
    "category": "aannemer",
    "urls": [],
    "verifiedOnly": False,
    "fetchDetails": False,
    "maxItems": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/detelefoongids-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "search",
  "searchQuery": "restaurant",
  "category": "aannemer",
  "urls": [],
  "verifiedOnly": false,
  "fetchDetails": false,
  "maxItems": 30
}' |
apify call crawlerbros/detelefoongids-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "DeTelefoongids (Dutch Business Directory) Scraper",
        "description": "Scrape Telefoonboek.nl, the Netherlands' official business and phone directory. Search by trade/category and city, or fetch business detail pages directly. Get name, address, phone, category, rating, opening hours, website and more - no login required.",
        "version": "1.0",
        "x-build-id": "OThlK1rKBYA7pg1F8"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~detelefoongids-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-detelefoongids-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawlerbros~detelefoongids-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-detelefoongids-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawlerbros~detelefoongids-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-detelefoongids-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byCategory",
                            "byUrl"
                        ],
                        "type": "string",
                        "description": "What to fetch.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query (mode=search)",
                        "type": "string",
                        "description": "Free-text keyword: a trade/profession, business name, or brand (\"restaurant\", \"loodgieter\", \"Albert Heijn\").",
                        "default": "restaurant"
                    },
                    "category": {
                        "title": "Category (mode=byCategory)",
                        "type": "string",
                        "description": "A Telefoonboek.nl trade/category search term. Type any term you find while browsing the site's category index at telefoonboek.nl/rubrieken/, or copy one of the 50 curated examples below into the field.\n\nCurated examples:\n`aannemer` (Contractor), `accountant` (Accountant), `acupunctuur` (Acupuncture), `administratiekantoor` (Bookkeeping office), `adviesbureau` (Consultancy), `advocaat` (Lawyer), `afvalverwerking` (Waste processing), `alarminstallatie` (Alarm installation), `antiek` (Antiques), `apotheek` (Pharmacy), `arbodienst` (Occupational health service), `architect` (Architect), `audio-en-video` (Audio & video), `auto-onderdelen` (Car parts), `autobedrijf` (Car garage), `autolease` (Car leasing), `automatisering` (IT/automation), `autosloperij` (Car scrapyard), `autoverhuur` (Car rental), `autoverkoop` (Car dealer), `bakker` (Bakery), `bank` (Bank), `basisschool` (Primary school), `bouw` (Construction), `cafe` (Café), `camping` (Camping), `catering` (Catering), `dierenarts` (Veterinarian), `elektricien` (Electrician), `fysiotherapeut` (Physiotherapist), `garage` (Garage), `hotel` (Hotel), `huisarts` (General practitioner), `installatiebedrijf` (Installation company), `kapper` (Hairdresser), `loodgieter` (Plumber), `makelaar` (Real estate agent), `notaris` (Notary), `restaurant` (Restaurant), `schilder` (Painter), `schoonmaakbedrijf` (Cleaning company), `supermarkt` (Supermarket), `tandarts` (Dentist), `taxi` (Taxi), `uitvaartverzorging` (Funeral services), `verhuisbedrijf` (Moving company), `verzekeringen` (Insurance), `videotheek` (Video rental), `vloerenbedrijf` (Flooring company), `webdesign` (Web design), `ziekenhuis` (Hospital)",
                        "default": "aannemer"
                    },
                    "mainCategory": {
                        "title": "Refine by sub-category (mode=search / byCategory)",
                        "type": "string",
                        "description": "Narrow results using one of telefoonboek.nl's own results-page category facets, e.g. searching `restaurant` exposes sub-facets like `cafe`, `snackbar`, `hotel`, `catering`. These facets are computed per search query, so there is no fixed global list — run once without this field, check each result's `category`/`fullAddress` for the trade you want, then re-run with that slugified term here (spaces -> hyphens, lowercase, e.g. `groothandel-in-voedingsmiddelen`). Leave empty for unrefined results."
                    },
                    "city": {
                        "title": "City / town",
                        "type": "string",
                        "description": "Restrict results to a Dutch city or town, matching telefoonboek.nl's own city-scoped URLs. Works with any mode. Leave empty for nationwide results. Any valid Dutch town name is accepted; common examples: `Amsterdam`, `Rotterdam`, `Den Haag`, `Utrecht`, `Eindhoven`, `Groningen`, `Tilburg`, `Almere`, `Breda`, `Nijmegen`, `Apeldoorn`, `Haarlem`, `Arnhem`, `Enschede`, `Amersfoort`, `Zaanstad`, `Den Bosch`, `Zwolle`, `Zoetermeer`, `Leiden`, `Maastricht`, `Dordrecht`, `Ede`, `Leeuwarden`, `Alkmaar`, `Emmen`, `Delft`, `Venlo`, `Deventer`, `Helmond`."
                    },
                    "urls": {
                        "title": "Business detail URLs (mode=byUrl)",
                        "type": "array",
                        "description": "Full telefoonboek.nl detail-page URLs, e.g. `https://www.telefoonboek.nl/bedrijven/t4249019/krommenie/schleich-bouw-b.v/`.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "keyword": {
                        "title": "Keyword filter",
                        "type": "string",
                        "description": "Only keep results whose name, description, or category contain this text (case- and diacritics-insensitive)."
                    },
                    "minRating": {
                        "title": "Minimum rating (0-10)",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "number",
                        "description": "Drop businesses with a review rating below this value. Telefoonboek.nl rates businesses on a 0-10 scale (not 0-5)."
                    },
                    "verifiedOnly": {
                        "title": "Verified businesses only",
                        "type": "boolean",
                        "description": "Only emit businesses marked \"Geverifieerd\" (claimed/verified listing) on telefoonboek.nl. Only detectable on detail pages — combine with `fetchDetails: true` (or use mode=byUrl) for this filter to take effect.",
                        "default": false
                    },
                    "fetchDetails": {
                        "title": "Fetch full detail page per business",
                        "type": "boolean",
                        "description": "For search/byCategory modes: visit each business's detail page to also collect category, description, full per-day opening hours, a secondary phone number, and verified status. Slower (1 extra request per business).",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 30
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional proxy settings. Leave empty to use no proxy — telefoonboek.nl is publicly accessible without one. The actor automatically escalates to the free AUTO datacenter proxy group if it hits a 403/429."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
