# Zlaté stránky Business Directory Scraper (`crawlerbros/zlatestranky-scraper`) Actor

Scrape Zlaté stránky (zlatestranky.sk), Slovakia's leading business directory. Search by keyword, browse by category, or fetch business detail pages directly. Get name, address, phone, email, website, opening hours, rating and more - no login required.

- **URL**: https://apify.com/crawlerbros/zlatestranky-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Lead generation, 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

## Zlaté stránky Business Directory Scraper

Scrape [Zlaté stránky](https://www.zlatestranky.sk) (zlatestranky.sk), Slovakia's leading business directory ("Golden Pages"). Search any keyword, browse curated business categories, or fetch specific business detail pages — no login, no cookies, no API key required.

### What this actor does

- **Three modes:** `search` (free-text keyword, nationwide or city-scoped), `byCategory` (browse one of 51 curated trade/service categories), `byUrl` (fetch specific business detail pages)
- **Rich business data:** name, categories, full address (street/city/postal code), GPS coordinates, phone, email, website, rating, opening status, and more
- **Optional deep enrichment:** turn on `fetchDetails` to additionally pull review count, full per-day opening hours, services offered, accepted payment methods, related keywords, a full photo gallery, and the business's Facebook page URL from each business's detail page
- **Filters:** city/town filter, minimum rating, "open now" only, free-text keyword filter
- **Empty fields are omitted** — every record only contains data actually found for that business
- **Full Slovak UTF-8 diacritics support** — city names, addresses, and descriptions are preserved exactly (Žilina, Piešťany, Ružomberok, etc.)

### Output per business

- `businessId`, `sourceUrl` — unique ID and canonical Zlaté stránky detail-page URL
- `name`
- `categories[]` — trade/service tags (e.g. `Reštaurácie`, `Kaderníctvo`)
- `street`, `postalCode`, `city`, `fullAddress`
- `latitude`, `longitude`
- `phone`, `phoneSecondary` *(detail only)*, `email`, `website`
- `facebookUrl` — the business's own Facebook page, when linked from its detail page *(detail only)*
- `icoId` — Slovak company registration number (IČO), when the business has one on file
- `rating` (0-5), `reviewCount` *(detail only)*
- `reviews[]` — individual customer reviews `{author, rating, text}` (text present only when the reviewer wrote one; most reviews are star-only) *(detail only)*
- `openNow` (boolean), `openingHoursSummary` (text snippet), `openingHours[]` — per-day breakdown `{day, dayEn, hours}` *(detail only)*
- `services[]` — specific products/services offered *(detail only)*
- `paymentMethods[]` — accepted payment methods, e.g. cash/card *(detail only)*
- `keywords[]` — related search terms the business is tagged with *(detail only)*
- `description`
- `photoUrl`
- `galleryImages[]` — additional photo URLs from the business's detail-page gallery *(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 | `reštaurácia` | Free-text keyword (mode=search) |
| `category` | string | `reštaurácie` | Any Zlaté stránky trade/category term (mode=byCategory); 51 curated examples listed in the field description |
| `city` | string | – | Restrict results to a Slovak city/town; works with any mode |
| `urls` | array | – | Zlaté stránky detail-page URLs (mode=byUrl) |
| `keyword` | string | – | Keep only results whose name/description/categories/services contain this text |
| `minRating` | number | – | Drop businesses rated below this (0-5) |
| `openNowOnly` | boolean | `false` | Only businesses currently marked open |
| `fetchDetails` | boolean | `false` | Visit each business's detail page for review count, full hours, services, payment methods, keywords, gallery photos, and Facebook page URL (1 extra request per business) |
| `maxItems` | integer | `30` | Hard cap (1-500) |
| `proxyConfiguration` | object | – | Optional; zlatestranky.sk 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": "reštaurácia",
  "city": "Košice",
  "minRating": 4,
  "maxItems": 50
}
````

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

```json
{
  "mode": "byCategory",
  "category": "kaderníctvo",
  "fetchDetails": true,
  "maxItems": 100
}
```

#### Example: fetch specific business pages

```json
{
  "mode": "byUrl",
  "urls": [
    "https://www.zlatestranky.sk/firmy/Bratislava/H681768/Luigi+No.+1,+s.r.o./"
  ]
}
```

### Use cases

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

### FAQ

**Do I need a Zlaté stránky account?** No. Search, category browsing, and business detail pages are all publicly accessible without an account.

**Does the `city` filter guarantee I only get businesses in that city?** It combines two mechanisms: the `city` value is folded directly into zlatestranky.sk's own city-scoped URL (e.g. `/firmy/Košice/q_reštaurácia/1/`), 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` already on a 0-5 scale?** Zlaté stránky's own star-rating markup is natively 0-5 (half-star increments), so no conversion is needed — unlike some directories that report ratings as a 0-100 percentage internally.

**What's IČO?** The Slovak company identification number (Identifikačné číslo organizácie), roughly equivalent to a US EIN or UK company number. Populated whenever the business has one on file, in both `search`/`byCategory` and detail-enriched records.

**Can I browse categories not in the dropdown examples?** Yes — type any Zlaté stránky trade/category term into the `category` field (anything you find while browsing `zlatestranky.sk/rubriky-az/`). The field description lists 51 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 Zlaté stránky. 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 Zlaté stránky detail page) and `photoUrl`/`galleryImages` (Zlaté stránky's own CDN) are always directly verifiable.

**Can I get individual customer reviews, not just the star rating?** Yes — with `fetchDetails: true` (search/byCategory) or `mode: byUrl`, each record includes a `reviews[]` array of individual reviews as posted on the business's own Zlaté stránky detail page, each with `author` (the reviewer's name, or Zlaté stránky's own "Anonym" label for unnamed reviewers), `rating` (0-5), and `text` when the reviewer wrote one (many reviews are star-only).

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

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

# Actor input Schema

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

What to fetch.

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

Free-text keyword, e.g. business name, trade, or service ("reštaurácia", "kaderníctvo", "advokáti").

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

A Zlaté stránky category/trade search term. Type any term you find while browsing the site's category index at zlatestranky.sk/rubriky-az/, or copy one of the 51 curated examples below into the field.

Curated examples:
`reštaurácie` (Restaurants), `advokáti` (Lawyers), `lekári` (Doctors), `lekárne` (Pharmacies), `realitné kancelárie` (Real estate agencies), `kaderníctvo` (Hairdressers), `elektroinštalácie` (Electrical installations), `automobily - servisy` (Car repair shops), `nábytok` (Furniture), `cestovné kancelárie a agentúry` (Travel agencies), `upratovacie služby` (Cleaning services), `gastronomické služby` (Catering services), `ubytovne` (Hostels/lodging), `automobily - náhradné dielce` (Car parts), `maliari interiérov` (Interior painters), `geodézia` (Surveying), `architekti` (Architects), `e-shopy` (Online shops), `inštalatéri` (Plumbers), `taxislužba` (Taxi service), `ekonomické poradenstvo` (Economic consulting), `inžinierska činnosť` (Engineering services), `veterinári` (Veterinarians), `autobazáre` (Used car dealers), `zabezpečovacie zariadenia a systémy` (Security systems), `automobily - príslušenstvo a doplnky` (Car accessories), `automobily - požičovne` (Car rentals), `autobusová doprava` (Bus transport), `kamenárstvo` (Stonemasonry), `banky` (Banks), `elektrikári` (Electricians), `ubytovanie v súkromí` (Private accommodation), `interiéry` (Interior design), `jazykové školy` (Language schools), `darčekové predmety` (Gift shops), `informačné systémy` (IT/information systems), `papiernictvá` (Stationery stores), `internet - pripojenie` (Internet providers), `deratizácia` (Pest control), `manikúra` (Manicure), `pedikúra` (Pedicure), `kanalizácia` (Sewerage services), `zariadenia pre seniorov` (Senior care facilities), `audítori` (Auditors), `elektrické spotrebiče` (Electrical appliances), `kancelárie - prenájom` (Office rental), `herne a kasína` (Gaming halls & casinos), `daňové poradenstvo` (Tax consulting), `gastronómia` (Gastronomy), `jedálne` (Canteens), `hasiči` (Fire safety services), `bicykle` (Bicycles), `kúpaliská, plavárne` (Swimming pools)

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

Restrict results to a Slovak city or town, matching zlatestranky.sk's own city-scoped URLs. Works with any mode. Leave empty for nationwide results. Any valid Slovak town name is accepted; common examples: `Bratislava`, `Košice`, `Prešov`, `Žilina`, `Banská Bystrica`, `Nitra`, `Trnava`, `Trenčín`, `Martin`, `Poprad`, `Prievidza`, `Zvolen`, `Považská Bystrica`, `Michalovce`, `Spišská Nová Ves`, `Komárno`, `Levice`, `Humenné`, `Bardejov`, `Liptovský Mikuláš`, `Ružomberok`, `Piešťany`, `Topoľčany`, `Lučenec`, `Čadca`, `Dunajská Streda`, `Rimavská Sobota`, `Vranov nad Topľou`, `Šaľa`, `Pezinok`, `Nové Zámky`, `Trebišov`.

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

Full zlatestranky.sk detail-page URLs, e.g. `https://www.zlatestranky.sk/firmy/Bratislava/H681768/Luigi+No.+1,+s.r.o./`.

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

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

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

Drop businesses with a review rating below this value.

## `openNowOnly` (type: `boolean`):

Only emit businesses currently marked as open on zlatestranky.sk.

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

For search/byCategory modes: visit each business's detail page to also collect review count, full per-day opening hours, services offered, accepted payment methods, related keywords, and gallery photos. 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 — zlatestranky.sk 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": "reštaurácia",
  "category": "reštaurácie",
  "urls": [],
  "openNowOnly": false,
  "fetchDetails": false,
  "maxItems": 30
}
```

# Actor output Schema

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

Dataset containing all scraped Zlaté stránky 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": "reštaurácia",
    "category": "reštaurácie",
    "urls": [],
    "openNowOnly": false,
    "fetchDetails": false,
    "maxItems": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/zlatestranky-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": "reštaurácia",
    "category": "reštaurácie",
    "urls": [],
    "openNowOnly": False,
    "fetchDetails": False,
    "maxItems": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/zlatestranky-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": "reštaurácia",
  "category": "reštaurácie",
  "urls": [],
  "openNowOnly": false,
  "fetchDetails": false,
  "maxItems": 30
}' |
apify call crawlerbros/zlatestranky-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zlaté stránky Business Directory Scraper",
        "description": "Scrape Zlaté stránky (zlatestranky.sk), Slovakia's leading business directory. Search by keyword, browse by category, or fetch business detail pages directly. Get name, address, phone, email, website, opening hours, rating and more - no login required.",
        "version": "1.0",
        "x-build-id": "xgq6npodVwaZYZpfg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~zlatestranky-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-zlatestranky-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~zlatestranky-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-zlatestranky-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~zlatestranky-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-zlatestranky-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, e.g. business name, trade, or service (\"reštaurácia\", \"kaderníctvo\", \"advokáti\").",
                        "default": "reštaurácia"
                    },
                    "category": {
                        "title": "Category (mode=byCategory)",
                        "type": "string",
                        "description": "A Zlaté stránky category/trade search term. Type any term you find while browsing the site's category index at zlatestranky.sk/rubriky-az/, or copy one of the 51 curated examples below into the field.\n\nCurated examples:\n`reštaurácie` (Restaurants), `advokáti` (Lawyers), `lekári` (Doctors), `lekárne` (Pharmacies), `realitné kancelárie` (Real estate agencies), `kaderníctvo` (Hairdressers), `elektroinštalácie` (Electrical installations), `automobily - servisy` (Car repair shops), `nábytok` (Furniture), `cestovné kancelárie a agentúry` (Travel agencies), `upratovacie služby` (Cleaning services), `gastronomické služby` (Catering services), `ubytovne` (Hostels/lodging), `automobily - náhradné dielce` (Car parts), `maliari interiérov` (Interior painters), `geodézia` (Surveying), `architekti` (Architects), `e-shopy` (Online shops), `inštalatéri` (Plumbers), `taxislužba` (Taxi service), `ekonomické poradenstvo` (Economic consulting), `inžinierska činnosť` (Engineering services), `veterinári` (Veterinarians), `autobazáre` (Used car dealers), `zabezpečovacie zariadenia a systémy` (Security systems), `automobily - príslušenstvo a doplnky` (Car accessories), `automobily - požičovne` (Car rentals), `autobusová doprava` (Bus transport), `kamenárstvo` (Stonemasonry), `banky` (Banks), `elektrikári` (Electricians), `ubytovanie v súkromí` (Private accommodation), `interiéry` (Interior design), `jazykové školy` (Language schools), `darčekové predmety` (Gift shops), `informačné systémy` (IT/information systems), `papiernictvá` (Stationery stores), `internet - pripojenie` (Internet providers), `deratizácia` (Pest control), `manikúra` (Manicure), `pedikúra` (Pedicure), `kanalizácia` (Sewerage services), `zariadenia pre seniorov` (Senior care facilities), `audítori` (Auditors), `elektrické spotrebiče` (Electrical appliances), `kancelárie - prenájom` (Office rental), `herne a kasína` (Gaming halls & casinos), `daňové poradenstvo` (Tax consulting), `gastronómia` (Gastronomy), `jedálne` (Canteens), `hasiči` (Fire safety services), `bicykle` (Bicycles), `kúpaliská, plavárne` (Swimming pools)",
                        "default": "reštaurácie"
                    },
                    "city": {
                        "title": "City / town",
                        "type": "string",
                        "description": "Restrict results to a Slovak city or town, matching zlatestranky.sk's own city-scoped URLs. Works with any mode. Leave empty for nationwide results. Any valid Slovak town name is accepted; common examples: `Bratislava`, `Košice`, `Prešov`, `Žilina`, `Banská Bystrica`, `Nitra`, `Trnava`, `Trenčín`, `Martin`, `Poprad`, `Prievidza`, `Zvolen`, `Považská Bystrica`, `Michalovce`, `Spišská Nová Ves`, `Komárno`, `Levice`, `Humenné`, `Bardejov`, `Liptovský Mikuláš`, `Ružomberok`, `Piešťany`, `Topoľčany`, `Lučenec`, `Čadca`, `Dunajská Streda`, `Rimavská Sobota`, `Vranov nad Topľou`, `Šaľa`, `Pezinok`, `Nové Zámky`, `Trebišov`."
                    },
                    "urls": {
                        "title": "Business detail URLs (mode=byUrl)",
                        "type": "array",
                        "description": "Full zlatestranky.sk detail-page URLs, e.g. `https://www.zlatestranky.sk/firmy/Bratislava/H681768/Luigi+No.+1,+s.r.o./`.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "keyword": {
                        "title": "Keyword filter",
                        "type": "string",
                        "description": "Only keep results whose name, description, categories, or services contain this text (case- and diacritics-insensitive)."
                    },
                    "minRating": {
                        "title": "Minimum rating (0-5)",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "number",
                        "description": "Drop businesses with a review rating below this value."
                    },
                    "openNowOnly": {
                        "title": "Open now only",
                        "type": "boolean",
                        "description": "Only emit businesses currently marked as open on zlatestranky.sk.",
                        "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 review count, full per-day opening hours, services offered, accepted payment methods, related keywords, and gallery photos. 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 — zlatestranky.sk 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
