Firmy.cz Business Directory Scraper avatar

Firmy.cz Business Directory Scraper

Pricing

$3.00 / 1,000 company listings

Go to Apify Store
Firmy.cz Business Directory Scraper

Firmy.cz Business Directory Scraper

Scrapes public Firmy.cz company listings and detail pages with an HTTP-only crawler.

Pricing

$3.00 / 1,000 company listings

Rating

0.0

(0)

Developer

Fetch Finch

Fetch Finch

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Share

Build structured Czech business datasets from Firmy.cz category pages, search pages, and company profiles.

The actor is useful for lead generation, local market research, competitor research, directory building, CRM enrichment, and location-based business analysis.

Quick start

  1. Choose a Category and Region in the input form.
  2. Decide whether to open company profiles with Open detail pages.
  3. Set Maximum companies and start the run.
  4. Export the dataset as JSON, CSV, Excel, or use it through the Apify API and integrations.

The guided category and region selectors are the easiest option for broad regional crawls. Advanced users can provide one or more Firmy.cz URLs through Start URLs or Category URLs for searches, subcategories, localities, or specific profile pages.

Input

Category and region

Select a top-level category and Czech region from the dropdowns. The actor creates the corresponding Firmy.cz listing URL automatically.

Advanced URLs

Use Start URLs when you already have search, subcategory, locality, or company profile URLs. Category URLs accepts a plain list of URLs and is convenient for programmatic runs.

Open detail pages

Enabled by default. The actor visits each company profile to enrich the listing with additional contact and business information. Disable it for faster, listing-only exports.

Maximum pages per listing

Controls pagination for each listing URL. Use 0 to follow all discovered pages.

Maximum companies

Controls the total number of companies written to the dataset. Use 0 for no item limit.

HTTP concurrency

Controls how many pages can be fetched in parallel. The default value of 3 is a good starting point.

Example inputs

Restaurants in Prague

{
"category": "Restauracni-a-pohostinske-sluzby",
"region": "kraj-praha",
"includeDetails": true,
"maxPages": 2,
"maxItems": 100
}

Listing-only auto-moto crawl

{
"category": "Auto-moto",
"region": "kraj-jihomoravsky",
"includeDetails": false,
"maxPages": 0,
"maxItems": 500
}

Custom search URLs

{
"startUrls": [
"https://www.firmy.cz/Auto-moto/kraj-praha",
"https://www.firmy.cz/Remesla-a-sluzby/kraj-jihomoravsky"
],
"includeDetails": true,
"maxItems": 200
}

Output

The dataset contains one record per company. Fields are included when available:

  • companyId
  • ico (Czech company identification number, when available)
  • name
  • url
  • sourceUrl
  • sourceType
  • categories
  • address, locality, postalCode, country
  • latitude, longitude
  • rating, reviewCount
  • description
  • imageUrl, logoUrl
  • website
  • phone, email
  • openingHours, openingHoursSpecification
  • socialNetworks
  • scrapedAt

Example output

{
"companyId": "123456",
"ico": "04958250",
"name": "Example company",
"url": "https://www.firmy.cz/detail/123456-example-company.html",
"sourceUrl": "https://www.firmy.cz/Auto-moto/kraj-praha",
"sourceType": "detail",
"categories": ["Autoservisy"],
"address": "Example Street 12, Praha",
"locality": "Praha",
"postalCode": "10000",
"country": "CZ",
"latitude": 50.0755,
"longitude": 14.4378,
"rating": 4.8,
"reviewCount": 42,
"description": "Business description",
"website": "https://example.com",
"phone": "+420 123 456 789",
"email": "info@example.com",
"openingHours": "Po–Pá 08:00–17:00",
"socialNetworks": ["https://www.facebook.com/example"],
"scrapedAt": "2026-09-02T14:00:00.000Z"
}

API example

curl -X POST \
"https://api.apify.com/v2/acts/fetchfinch~firmy-cz-scraper/runs?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"category": "Restauracni-a-pohostinske-sluzby",
"region": "kraj-praha",
"includeDetails": true,
"maxItems": 100
}'

Support

If a run does not return the expected data, include the input and run ID when opening an issue so the problem can be reproduced quickly.