Finstat.sk Company Data Scraper avatar

Finstat.sk Company Data Scraper

Pricing

from $1.80 / 1,000 results

Go to Apify Store
Finstat.sk Company Data Scraper

Finstat.sk Company Data Scraper

[💰 $1.80 / 1K] Extract Slovak company profiles and financials from Finstat.sk. Search by name or IČO for identity (IČO, DIČ, VAT, legal form, address), multi-year revenue & profit, current-year assets & equity, SK NACE codes, employee ranges, and risk flags (debts, state claims, bankruptcy).

Pricing

from $1.80 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Pull structured company data from Finstat.sk at scale — legal identity, official tax and VAT identifiers, multi-year revenue and profit history, industry classification, employee bands, and public risk flags for any Slovak company. Search by company name when you don't have the number, or look up exact 8-digit IČO identifiers and profile URLs. Built for CEE market researchers, sales and lead-generation teams, and credit-risk and due-diligence analysts who need Slovak company financials and risk signals without paying for a premium registry seat.

Why This Scraper?

  • Three ways to find a company — search by company name or keyword, look up an exact 8-digit IČO, or paste a Finstat.sk profile URL. Competing tools are IČO-only, so you're stuck if all you have is a name like "ESET" or "Slovnaft".
  • 5-year revenue and profit history — every record carries a financials[] array with year-by-year revenue and profit (roughly 2021–2025), not a single hard-coded snapshot.
  • Four public risk flags on every company — debts and arrears, state and tax claims, bankruptcy or restructuring, and temporary protection, each returned as a clean true/false boolean for instant lead qualification.
  • Three official identifiers — IČO (8-digit company number), DIČ (tax number), and IČ DPH / VAT number, so you can match records against invoices, VAT filings, and CRM entries.
  • SK NACE industry classification — both the numeric SK NACE code and its full activity-description text label, ready for sector filtering and segmentation.
  • Latest-year financial snapshot — revenue, profit, total assets, equity, debt ratio, and gross margin as typed numbers, with revenueYear telling you exactly which reporting year they cover.
  • Full legal registration details — legal form, registration entry (court, section, and insert), ownership type, establishment date, and registered seat with a parsed city field.
  • Employee band with a parsed lower bound — the published headcount range (e.g. "1000-1999") plus a numeric minEmployees value you can sort and filter on.
  • One billable row per company — the multi-year history is nested inside a single record, so a company with 5 or 15 reporting years still counts as one result.

Use Cases

Market Research

  • Map the financial profile of entire Slovak industries by SK NACE code
  • Benchmark revenue, profit, and margin across companies in the same sector
  • Track multi-year growth trends using year-by-year financial history
  • Size a market by counting active companies and their employee bands

Lead Generation & Sales Prospecting

  • Build prospect lists filtered by revenue, employee band, or legal form
  • Enrich CRM records with IČO, DIČ, and VAT numbers for accurate matching
  • Prioritize outreach to healthy companies with no debts or claims
  • Target companies by city and registered seat for territory planning

Credit & Risk Assessment

  • Screen counterparties against four public risk flags before extending terms
  • Flag companies with recorded debts, state claims, or active bankruptcy
  • Monitor debt ratio and equity trends year over year
  • Spot companies under temporary protection early

M&A & Due Diligence

  • Pull a target's full multi-year revenue and profit trajectory in one run
  • Verify legal form, registration entry, and ownership type
  • Cross-check tax and VAT registration status
  • Assemble comparables sets by sector and size

Data Enrichment & Integration

  • Append financial and registration data to an existing company database
  • Feed Slovak company data into analytics dashboards and scoring models
  • Keep records fresh with the latest reporting-year figures

Getting Started

Look Up a Single Company by IČO

The fastest, most exact way to start — one IČO returns one fully enriched record:

{
"icos": ["31322832"]
}

Search by Company Name

When you only have a name or keyword, search returns every matching company, enriched:

{
"companyNames": ["ESET", "Tatra banka"],
"maxResults": 50
}

Identity-Only Run (No Financial History)

Turn off multi-year history for a leaner, faster pull of just identity and the latest-year snapshot:

{
"companyNames": ["Bratislava"],
"includeFinancials": false,
"maxResults": 200
}

Advanced — Mix Names, IČOs, and URLs

Combine every input type in a single run; overlapping matches are automatically de-duplicated:

{
"companyNames": ["Slovnaft"],
"icos": ["31322832", "31333532"],
"startUrls": [
{ "url": "https://finstat.sk/31411801" }
],
"includeFinancials": true,
"maxResults": 500
}

Input Reference

What to Scrape

ParameterTypeDefaultDescription
companyNamesstring[]["ESET"]Company names or keywords to search (e.g. "ESET", "Slovnaft", "Tatra banka"). Each entry is searched separately and its matching companies are returned, fully enriched. Use when you know the name but not the IČO.
icosstring[][]Exact 8-digit Slovak IČO identifiers to look up directly (e.g. "31322832"). Each IČO returns one company record.
startUrlsURL[][]Direct Finstat.sk company profile URLs to scrape as-is (e.g. https://finstat.sk/31322832).

Output Detail

ParameterTypeDefaultDescription
includeFinancialsbooleantrueInclude the full multi-year revenue and profit history for each company. Turn off for faster, leaner runs that keep only the latest-year figures plus company identity.

Limits

ParameterTypeDefaultDescription
maxResultsinteger100Maximum total company records to collect across all names, IČO identifiers, and URLs combined. Set to 0 to collect as many as possible. Exact IČO and URL lookups are always scraped in full.

Output

Each company is a single dataset row. Here is a representative record with financial history enabled:

{
"companyName": "SLOVNAFT, a.s.",
"ico": "31322832",
"dic": "2020376280",
"vatId": "SK2020376280",
"legalForm": "Akciová spoločnosť",
"status": "Active",
"establishedDate": "1992-05-05",
"address": "Vlčie hrdlo 1, 824 12 Bratislava",
"city": "Bratislava",
"registration": "Okresný súd Bratislava I, oddiel: Sa, vložka č. 426/B",
"ownershipType": "Súkromné zahraničné vlastníctvo",
"skNace": "19200",
"skNaceText": "Výroba rafinovaných ropných produktov",
"employeeRange": "1000-1999",
"minEmployees": 1000,
"revenue": 5612836000,
"profit": 195790000,
"revenueYear": 2025,
"assets": 2665196000,
"equity": 1580420000,
"debtRatio": 40.68,
"grossMargin": 3.49,
"hasDebts": false,
"hasStateClaims": false,
"isBankrupt": false,
"hasTemporaryProtection": false,
"financials": [
{ "year": 2021, "revenue": 3894120000, "profit": 142300000 },
{ "year": 2022, "revenue": 6521030000, "profit": 210500000 },
{ "year": 2023, "revenue": 5983450000, "profit": 188900000 },
{ "year": 2024, "revenue": 5744210000, "profit": 176200000 },
{ "year": 2025, "revenue": 5612836000, "profit": 195790000 }
],
"url": "https://finstat.sk/31322832",
"scrapedAt": "2026-07-16T14:30:00Z"
}

Company Identity

FieldTypeDescription
companyNamestringRegistered company name
icostringIČO — 8-digit Slovak company identifier (kept as a string, leading zeros preserved)
dicstringDIČ — tax identification number
vatIdstringIČ DPH — VAT identification number (e.g. SK2020376280); null if the company is not VAT-registered
legalFormstringLegal form (e.g. "Akciová spoločnosť", "Spoločnosť s ručením obmedzeným")
statusstringCompany status (Active, In bankruptcy or restructuring, Terminated)
establishedDatestringEstablishment date (ISO YYYY-MM-DD)
addressstringRegistered seat (sídlo), full address
citystringCity parsed from the registered seat
registrationstringRegister entry: court, section (oddiel), and insert (vložka)
ownershipTypestringOwnership type (e.g. private domestic or foreign)
skNacestringSK NACE industry code
skNaceTextstringSK NACE activity description
employeeRangestringPublished employee band (e.g. "1000-1999")
minEmployeesintegerLower bound of the employee band
urlstringFinstat.sk company profile URL
scrapedAtstringISO-8601 timestamp of extraction

Financials

FieldTypeDescription
revenuenumberLatest available year's revenue (tržby)
profitnumberLatest available year's profit (zisk); may be negative
revenueYearintegerReporting year the latest revenue and profit apply to
assetsnumberLatest-year total assets
equitynumberLatest-year equity
debtRationumberLatest-year total debt ratio (percentage)
grossMarginnumberLatest-year gross margin (percentage)
financialsobject[]Multi-year history; each entry is { year, revenue, profit }. Included only when includeFinancials is on

Risk Flags

FieldTypeDescription
hasDebtsbooleanCompany has recorded debts or arrears (dlhy a nedoplatky)
hasStateClaimsbooleanState or tax claims are recorded against the company (pohľadávky štátu)
isBankruptbooleanA bankruptcy or restructuring proceeding is recorded (konkurz)
hasTemporaryProtectionbooleanThe company is under temporary protection (dočasná ochrana)

Tips for Best Results

  • IČO lookups are exact and always complete — one IČO returns one record, and IČO and URL inputs are scraped in full even beyond maxResults. Use them whenever you already have the company number.
  • Name search paginates — a broad keyword like "Bratislava" matches thousands of companies. Set maxResults to cap volume, or use a more specific name to narrow the results.
  • Turn off includeFinancials for identity-only pulls — when you only need names, identifiers, and the latest snapshot, switching it off makes runs faster and leaner.
  • Pre-qualify leads with the four risk flags — filter on hasDebts, hasStateClaims, isBankrupt, and hasTemporaryProtection to separate healthy prospects from distressed companies before you reach out.
  • A null vatId is itself a signal — companies below the VAT-registration threshold or newly formed often return no IČ DPH, which can help you spot small or early-stage businesses.
  • Use revenueYear to align comparisons — the latest reporting year varies by company, so read revenueYear before benchmarking one company's revenue against another's.
  • Combine input types in one run — mix names, IČOs, and URLs freely; overlapping matches are de-duplicated so each company appears once.

Pricing

From $1.80 per 1,000 results — richer Slovak company data (name search, full identity, multi-year financials, and risk flags) at a lower price than IČO-only alternatives. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.22$0.20$0.19$0.18
1,000$2.15$2.00$1.90$1.80
10,000$21.50$20.00$19.00$18.00
100,000$215.00$200.00$190.00$180.00

A "result" is one company record — the multi-year financials[] history is embedded in that single row, so you are never billed per reporting year. No compute or time-based charges — you pay per result, plus a small fixed per-run start fee.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n — Workflow automation
  • Google Sheets — Direct spreadsheet export
  • Slack / Email — Notifications on new results
  • Webhooks — Trigger custom APIs on run completion
  • Apify API — Full programmatic access

This actor collects only publicly available company data that Finstat.sk displays anonymously, sourced from official Slovak public registers. It does not access paywalled, login-only, or premium fields such as officer and shareholder names, subsidiary lists, or full filing histories. Users are responsible for complying with applicable laws and Finstat.sk's Terms of Service. Use the data for legitimate research, business intelligence, and compliance purposes only, and handle any company information in line with applicable data-protection regulations.