Slovakia RPVS Beneficial Owners (UBO) Scraper avatar

Slovakia RPVS Beneficial Owners (UBO) Scraper

Pricing

from $5.00 / 1,000 partner records

Go to Apify Store
Slovakia RPVS Beneficial Owners (UBO) Scraper

Slovakia RPVS Beneficial Owners (UBO) Scraper

Search Slovakia's public beneficial-ownership register (RPVS) by IČO or company name. Returns beneficial owners with a public-official (PEP) flag, plus the authorised person. No API key.

Pricing

from $5.00 / 1,000 partner records

Rating

0.0

(0)

Developer

getregdata

getregdata

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Search Slovakia's public beneficial-ownership register - the RPVS (Register partnerov verejného sektora) - by IČO or company name and get clean, structured JSON: the company identity plus its beneficial owners (konečný užívateľ výhod), each flagged with a public-official (PEP) indicator, and the authorised person who filed and verifies the entry. No API key.

Slovakia's RPVS is one of only two genuinely public beneficial-ownership registers in the EU (the other is Poland's CRBR). Every company that takes public money - contracts, subsidies, licences - must disclose its ultimate beneficial owners here. That makes it a high-value, low-noise source for KYC / KYB, UBO discovery, PEP screening and counterparty due diligence.

Why this actor

The register publishes an official open-data API, but the raw OData feed splits each partner across several entities (identity, owners, authorised person) and buries beneficial owners behind a navigation expansion. This actor does the joining for you: send an IČO or a name, get one tidy record per partner with its full beneficial-owner list, PEP flags, and validity dates already resolved.

No key, no setup

Reads the official public open-data API directly. No API key, no CAPTCHA, no proxy. Just send an IČO or a company name.

Pairs with our UBO & debtor actors (the source→screen flow)

This actor sources the ultimate beneficial owners. Chain it with a debtor / insolvency screen on those same people and companies:

Source the beneficial owners, then check them. That is the KYC/AML pattern the whole suite is built around.

Quick Start

Look up a company's beneficial owners by IČO:

{
"searchMode": "byIco",
"icoNumbers": ["35763469"]
}

Search by company name (contains-match):

{
"searchMode": "byName",
"searchQuery": "Telekom"
}

Screen several companies at once, keeping only currently-valid entries:

{
"searchMode": "byIco",
"icoNumbers": ["35763469", "31322832", "31333532"],
"currentOnly": true
}

Input

FieldTypeDescription
searchModestringbyIco (default) or byName.
icoNumbersarrayOne or more Slovak IČO registration numbers (used in byIco mode).
searchQuerystringCompany name, contains-match (used in byName mode).
exactMatchbooleanbyName: match the name exactly instead of contains. Default false.
currentOnlybooleanKeep only currently-valid owners/identities (drop historical). Default false.
maxResultsintegerMax partner records to export across all queries. Default 50.

Output

One dataset item per public-sector partner:

{
"registerNumber": 7049,
"partnerName": "Slovak Telekom, a.s.",
"ico": "35763469",
"legalForm": "PravnickaOsoba",
"partnerType": "company",
"isCurrentlyRegistered": true,
"validFrom": "2017-02-01T00:00:00+01:00",
"validTo": null,
"beneficialOwners": [
{
"firstName": "Timotheus", "lastName": "Höttges",
"fullName": "Timotheus Höttges", "type": "person",
"ico": null, "dateOfBirth": null,
"isPublicOfficial": false,
"validFrom": "2017-02-01T00:00:00+01:00", "validTo": null, "isCurrent": true
}
],
"beneficialOwnerCount": 20,
"hasPublicOfficial": false,
"authorizedPersons": [
{ "name": "Malata, Pružinský, Hegedüš & Partners s. r. o.", "type": "company", "ico": "47239915" }
],
"matchedQuery": "35763469",
"jurisdiction": "SK",
"source": "RPVS - Register partnerov verejného sektora (Ministerstvo spravodlivosti SR)",
"sourceUrl": "https://rpvs.gov.sk/",
"retrievedAt": "2026-07-02T00:00:00.000Z"
}

beneficialOwners is an array (a company usually has several). isPublicOfficial per owner and hasPublicOfficial at the partner level are the register's own public-official flag - a first-pass PEP signal. Date of birth is redacted (null) in the public open-data feed.

Common use cases

  • KYC / KYB & UBO discovery - resolve the ultimate beneficial owners behind a Slovak counterparty.
  • PEP screening - the isPublicOfficial flag surfaces owners the register itself marks as public officials.
  • AML source→screen - feed the owners you find here into an insolvency / debtor / sanctions check.
  • Procurement & public-money due diligence - see who ultimately benefits from a public-sector partner.

Data source & compliance

  • Source: the official RPVS open-data API (rpvs.gov.sk), maintained by the Ministry of Justice of the Slovak Republic. Every record is stamped with its source URL and retrieval timestamp.
  • Public records. The RPVS is a public register open to anyone; this actor reads the official open-data feed and logs in to nothing.
  • Query-driven - it looks up the IČOs / names you ask for, not a bulk copy of the register.
  • Date of birth and other protected personal data are already redacted by the register in the public feed. Use the data lawfully (KYC/AML, due diligence, B2B) and gently.

Notes

  • A partner's beneficial owners and identity can change over time; historical entries are included by default (set currentOnly: true to keep only valid ones), each with validFrom / validTo.