# Zlaté stránky SK Scraper (`memo23/zlatestranky-sk-scraper`) Actor

Scrape zlatestranky.sk (Zlaté stránky Slovakia) into structured business rows: name, phone, email when listed, website, address, hours. Keyword plus city, nationwide SK, or a search/profile URL. JSON or CSV out. $5 per 1,000 listings.

- **URL**: https://apify.com/memo23/zlatestranky-sk-scraper.md
- **Developed by:** [Muhamed Didovic](https://apify.com/memo23) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Zlaté stránky SK Scraper

Scrape [zlatestranky.sk](https://www.zlatestranky.sk/) (Zlaté stránky Slovakia) into one row per **business**: name, phone, email when listed, website, address, opening hours.

Works from a keyword plus optional city, a nationwide term, or a pasted `/hladanie/` or `/firmy/{city}/H{id}/` URL. Cards and profiles answer without Apify Proxy.

**Pricing:** $0.005 per listing (`pushData`). Extra `contact-phone` $0.002 and `contact-email` $0.05 when those fields are present.

### Why use this scraper?

- Phone, email, website, and today's hours sit on the search card.
- Profile pages add the full week of hours, zip, and coordinates.
- City is `{term}+{City}` in the search slug — a third path segment 404s.
- Optional harvest of the business site when the directory has no inbox.

### Overview

Built for lead lists and local research on Slovak companies. Each dataset item is one listing from zlatestranky.sk (WeNet / FCR). The Czech Mediatel site `zlatestranky.cz` is a different stack and is rejected.

### Supported inputs

| Input | What it does |
|---|---|
| `searchTerms` | What you type in Zlaté stránky, e.g. `restauracia`, `instalater` |
| `locations` | City appended as `+City`. Empty = nationwide |
| `startUrls` | `https://www.zlatestranky.sk/hladanie/...` or `/firmy/.../H{id}/...` |
| `maxItems` | Stop after N unique listings (free plan cap 50) |
| `harvestWebsiteEmail` | Fetch the business site if the profile has no inbox |
| `proxy` | Leave off |

Unsupported: `zlatestranky.cz`, the old `sk.zlatestranky` Android app (Play 404).

### Use cases

| Who | Why |
|---|---|
| Sales / agencies | Slovak phones and emails from a category |
| Researchers | Hours, city, and postcode coverage |
| SEO / maps | Website + coordinates per listing |

### How it works

1. Build `https://www.zlatestranky.sk/hladanie/{term}/` or `/{term}+{City}/`. Page N is `/{N}/` (20 cards).
2. Parse `section.profile[data-listing-id]` microdata.
3. Open `/firmy/{city}/H{id}/{slug}/` for the week table and zip.
4. Charge `contact-phone` / `contact-email` after `pushData`.
5. If still no email and harvest is on, fetch the business homepage/kontakt page.

### Input configuration

| Field | Type | Required | Notes |
|---|---|---|---|
| `searchTerms` | string\[] | one of terms/URLs | e.g. `restauracia` |
| `locations` | string\[] | no | e.g. `Bratislava` |
| `startUrls` | url\[] | no | `/hladanie/` or `/firmy/` |
| `maxItems` | integer | no | default 50 |
| `maxPages` | integer | no | default 20 |
| `scrapeDetails` | boolean | no | default true |
| `harvestWebsiteEmail` | boolean | no | default true |
| `maxConcurrency` | integer | no | default 5 |
| `proxy` | proxy | no | default off |

#### Example input

```json
{
  "searchTerms": ["restauracia"],
  "locations": ["Bratislava"],
  "maxItems": 10,
  "harvestWebsiteEmail": false,
  "proxy": { "useApifyProxy": false }
}
```

### Output overview

One JSON object per business. Search cards already carry phone, email, website, and coordinates. Profiles add the week of hours and zip.

### Output samples

`restauracia+Bratislava`, profile merge (fields trimmed):

```json
{
  "listingId": "H681768",
  "name": "Luigi No. 1, s.r.o.",
  "phone": "+421262410619",
  "email": "luigipizza@luigipizza.sk",
  "website": "https://www.pizza-bratislava.sk",
  "street": "Lachova 1611/37",
  "postalCode": "85103",
  "city": "Bratislava",
  "country": "SK",
  "hours": ["MO 10:00-22:00", "FR 10:00-23:00", "SU 11:00-22:00"],
  "profileUrl": "https://www.zlatestranky.sk/firmy/Bratislava/H681768/Luigi+No.+1,+s.r.o./"
}
```

### Key output fields

| Field | Notes |
|---|---|
| `listingId` | `H` + digits |
| `phone` / `phones` | `.phone-value` / `.tag-phone-main` |
| `email` | Profile mailto |
| `website` | Independent site, not zlatestranky.sk |
| `hours` | `MO 10:00-22:00` from the weekday table |
| `latitude` / `longitude` | `data-location` |

### FAQ

**Do I need a proxy?** Not on current HTML.

**Why did `/hladanie/restauracia/Bratislava/` 404?** City is not a path segment. Use `/hladanie/restauracia+Bratislava/`.

**Is there an official app API?** No. `sk.zlatestranky` is gone from Play.

### Support

Questions and issues on the [actor page](https://apify.com/memo23/zlatestranky-sk-scraper).

### Disclaimer

Use this actor in line with Zlaté stránky terms and applicable law. You are responsible for how you store and contact the people and companies in the dataset.

### SEO Keywords

zlatestranky scraper, zlaté stránky, slovakia yellow pages, slovak business emails, bratislava directory scraper

# Actor input Schema

## `startUrls` (type: `array`):

Paste zlatestranky.sk search or profile links. Examples: <code>https://www.zlatestranky.sk/hladanie/restauracia/</code>, <code>https://www.zlatestranky.sk/hladanie/instalater+Bratislava/</code>, or <code>https://www.zlatestranky.sk/firmy/Bratislava/H681768/Luigi+No.+1,+s.r.o./</code>. Czech zlatestranky.cz URLs are rejected.

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

What you would type into Zlaté stránky, e.g. <b>restauracia</b>, <b>instalater</b>, <b>advokat</b>, <b>hotel</b>. One row per term. Every term is searched in every city below. Leave cities empty for a nationwide SK query. A zlatestranky.sk /hladanie/ or /firmy/ URL also works here.

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

Slovak city, e.g. <b>Bratislava</b>, <b>Kosice</b>, <b>Zilina</b>, <b>Presov</b>. Empty = nationwide. City is appended as <code>/hladanie/{term}+{City}/</code> (a path city segment 404s).

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

Stop after this many unique businesses across the whole run. Free plan is capped at 50.

## `scrapeDetails` (type: `boolean`):

Loads the /firmy/{city}/H{id}/ page for the full week of hours, zip, and any extra contacts. Turn off to keep search-card fields only.

## `harvestWebsiteEmail` (type: `boolean`):

If the directory profile has no inbox, fetch the business website homepage/contact page.

## `maxPages` (type: `integer`):

Page N is <code>/hladanie/{term}/{N}/</code> (20 cards per page).

## `maxConcurrency` (type: `integer`):

How many pages and profiles to load at the same time.

## `proxy` (type: `object`):

Leave off. Search and profile pages currently answer without Apify Proxy.

## Actor input object example

```json
{
  "searchTerms": [
    "restauracia"
  ],
  "locations": [
    "Bratislava"
  ],
  "maxItems": 50,
  "scrapeDetails": true,
  "harvestWebsiteEmail": true,
  "maxPages": 20,
  "maxConcurrency": 5,
  "proxy": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "restauracia"
    ],
    "locations": [
        "Bratislava"
    ],
    "proxy": {
        "useApifyProxy": false
    }
};

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

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "searchTerms": ["restauracia"],
    "locations": ["Bratislava"],
    "proxy": { "useApifyProxy": False },
}

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

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

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

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "restauracia"
  ],
  "locations": [
    "Bratislava"
  ],
  "proxy": {
    "useApifyProxy": false
  }
}' |
apify call memo23/zlatestranky-sk-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,memo23/zlatestranky-sk-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/bu1zqBJ0MLgaYqerv/builds/hsdsHIP6PiQlVdacz/openapi.json
