European public data, on tap.
Compliance check, financial statements, public contracts and a REST API over pan-EU open registries - 42M+ registered entities across 14 markets. Schema-versioned, audit-logged, NIS2-ready. Sources: RPO/RUZ/FS/OV/CRZ/RPVS, ARES, AJPES, Äriregister, UR, PRH, CRO, Brreg, SIRENE, GLEIF, OpenSanctions.
What you can do with Entyrix
Seven main surfaces over one dataset. Browser, REST API, transparency feeds, OpenAPI 3.1.
Compliance Check
Per-company dashboard: compliance tier (STANDARD/ENHANCED_DD/HIGH_RISK/PROHIBITED), sanctions, PEP, tax debt, bankruptcy, shell addresses. Share-able URLs.
Try → RankingsRankings
TOP 100 largest companies (RUZ revenue), top state suppliers (CRZ), shell addresses, most-viewed. 3 country tabs (all/sk/cz).
View → DevelopersREST API in 30 s
Copy-paste examples in curl, Python, TypeScript and PHP. Lookup + batch + compliance + advanced-search (30+ filters). Bearer auth, 600 req/min.
Quickstart → OpenAPISwagger UI
226 endpoints. Interactive docs with Try-it-out. OpenAPI 3.1 spec + Postman Collection 2.1 (drift-free auto-generated).
Open → LivePlatform stats
Live stats across our pan-EU coverage: NACE breakdowns, regions, size, NIS2 scope, credit grading, freshness from 30+ imports.
Show → TransparencyData feeds
9 public feeds + regulatory RSS aggregator (IPKZ, NBS+ČNB, antitrust, CORDIS, EU funds, UK PSC, sanctions, bankruptcies, EU + national regulators). No auth, per-feed licensing.
Browse → CatalogFull API catalog
All endpoints grouped by domain: companies, bank-accounts, VAT, TED, justice, monitoring, admin. Auth badges + descriptions.
View →Specialised landing pages
Curated tools for specific integration scenarios. Each returns live data + interactive ICO check + API response shape + FAQ.
KYC / KYB API
Full compliance profile: PROHIBITED / HIGH_RISK / ENHANCED_DD / STANDARD tiers combining sanctions, UBO, financial supervision, NIS2.
ComplianceSanctions screening
OFAC + EU + UN + UK HMT watch-list screening across our pan-EU coverage. Daily refresh, 4-tier compliance risk classification.
ComplianceNIS2 checker
Essential / important / out-of-scope classification per EU directive 2022/2555 + national transpositions. Annex I + II scoping across our pan-EU coverage.
FinanceCredit score
A–F rating + 0–100 score + 10-factor breakdown for 1.27M companies. Weekly refresh. B2B credit decisions.
FinanceIndustry benchmarks
NACE peer analytics — p25/p50/p75 revenue, profit, margin, ROA per sector. 10 popular NACE 2-digit sectors.
DevCompany Lookup API
Developer-intent: 12-endpoint grid with latencies, 4-tab code samples (curl/Python/TS/PHP), comparison vs state registries.
ComplianceShell address scan
Mass-registration detector — 19,428 shell addresses, 738k companies ≥10 density. AML / journalism / procurement DD.
DevTransparency feeds
9 transparency feeds + 8 TOP-N breakdowns + RSS/Atom aggregator. No auth, per-feed licensing, OSINT-ready.
ComplianceIBAN → company
Invoice-fraud prevention. 312k IBANs from FS VAT-payer registry, mapped to live company records. Free, no-auth, daily refresh.
FinanceLEI → company
GLEIF Legal Entity Identifier resolver across our pan-EU coverage. Cross-references to MiFID II, CSRD, ESG reporting flows.
FinanceEU funds SK
€25.42 bn contracted, 21,474 projects, 12,748 recipients. ITMS2014+ transparency. Journalism · civic tech.
ComplianceTOP 20 directors
Ranking of persons with the most directorships across our coverage. Nominee directors, liquidators, cross-jurisdiction OSINT.
DevInsolvency monitoring
20k companies in bankruptcy, 82k event history, RSS/Atom/JSON/CSV feed + webhook alerts per ICO.
FinancePublic contracts SK
CRZ — 5.57M contracts, 356k suppliers, €460 bn aggregate value. TOP suppliers, per-ICO lookup, CSV export.
ComplianceAntitrust cases SK
AMO decisions — cartel, merger, abuse, state-aid. Red flag for KYB / pre-bid DD.
DevData sources catalog
40+ data sources across 14 markets + pan-EU layers. Cadence, format, license, freshness. Browsable HTML + JSON/CSV.
Rankings
What's happening this week
Top 10 most-recent bankruptcies + restructurings from Obchodný vestník. Updates daily, no auth, free CSV / RSS.
- 2026-05-25DP Development s.r.o.Bankruptcy
- 2026-05-25Lystlak s. r. o.Bankruptcy
- 2026-05-25Development Services Company s.r.o.Bankruptcy
- 2026-05-25PNLC, s. r. o.Bankruptcy
- 2026-05-25CHEMICAL GUYS s.r.o.Bankruptcy
- 2026-05-25Ured s. r. o.Bankruptcy
- 2026-05-25F.I.R.E., s.r.o.Bankruptcy
- 2026-05-25MAHAJANA s.r.o.Bankruptcy
- 2026-05-25UAE Energo Consulting s.r.o.Bankruptcy
- 2026-05-25RAVISSANT, s. r. o.Bankruptcy
For developers
REST API across our pan-EU coverage. Bearer token auth, 600 req/min, <100ms latency. Drift-free OpenAPI spec + Postman collection.
- Quickstart (30 s)curl/py/ts/php
- Swagger UIinteractive
- OpenAPI 3.1 specJSON
- Postman Collection92 requests
- API catalogHTML
- Platform statslive
- Stats feeds discovery8 TOP-N
- Data sources catalogcadence, license
# Lookup company by ID + compliance tier curl -H "Authorization: Bearer sk_live_…" \ -H "Accept: application/json" \ "https://entyrix.com/api/v1/companies/31322832/compliance" # { # "ico": "31322832", # "name": "SLOVNAFT, a.s.", # "tier": "STANDARD", # "credit_score": 82, # "credit_grade": "A", # "sanctions": [], # "nis2_scope": "essential" # }
// npm i @entyrix/sdk import { Entyrix } from "@entyrix/sdk"; const ex = new Entyrix({ apiKey: process.env.ENTYRIX_KEY }); const { name, tier, credit_score } = await ex.companies.compliance("31322832"); console.log(`${name} · ${tier} · ${credit_score}/100`); // → SLOVNAFT, a.s. · STANDARD · 82/100
# pip install entyrix from entyrix import Entyrix ex = Entyrix(api_key=os.environ["ENTYRIX_KEY"]) company = ex.companies.compliance("31322832") print(f"{company.name} · {company.tier} · {company.credit_score}/100") # → SLOVNAFT, a.s. · STANDARD · 82/100
// composer require entyrix/sdk use Entyrix\Client; $ex = new Client(getenv("ENTYRIX_KEY")); $c = $ex->companies->compliance("31322832"); echo "{$c->name} · {$c->tier} · {$c->credit_score}/100"; // → SLOVNAFT, a.s. · STANDARD · 82/100
// go get github.com/entyrix/sdk-go package main import ( "context" "fmt" "os" entyrix "github.com/entyrix/sdk-go" ) func main() { ex := entyrix.New(os.Getenv("ENTYRIX_KEY")) c, _ := ex.Companies.Compliance(context.Background(), "31322832") fmt.Printf("%s · %s · %d/100\n", c.Name, c.Tier, c.CreditScore) } // → SLOVNAFT, a.s. · STANDARD · 82/100
# gem install entyrix require "entyrix" ex = Entyrix::Client.new(api_key: ENV.fetch("ENTYRIX_KEY")) c = ex.companies.compliance("31322832") puts "#{c.name} · #{c.tier} · #{c.credit_score}/100" # → SLOVNAFT, a.s. · STANDARD · 82/100
EU-27 + UK & EFTA. One graph.
Live coverage of multiple national registers under one schema — financials, sanctions, public contracts and registry feeds. Coverage expands continuously as new markets ship.
Answers before you ask.
Still unclear? Email [email protected] — we typically respond within 4 working hours.
What data sources do you cover?
Is this a regulated credit rating?
What is the latency and rate limit?
How do you handle GDPR?
Can I get raw bulk data?
Is there a sandbox?
Free for now. Paid tiers coming Q3 2026.
Today the 600 req/min cap costs €0. We're shipping a gentle Free → Pro → Enterprise model in late Q3 2026 — sign up below to lock in early-adopter pricing.
Free Now
- 600 req/min
- 50 000 req / mo
- All public endpoints
- JSON + CSV + RSS feeds
- No credit card
API / Pro Coming soon
- Higher rate + monthly quota
- Bulk export
- Webhook subscriptions
- Priority email support
Enterprise Contract
- Dedicated data contract
- Weekly Parquet snapshots
- On-prem deployment
- Account manager + SLA
Early access
We're working on Free / Starter / Pro / Business / Enterprise tiers. Sign up to be notified + get early-adopter discount.
Or request an API key directly via the /api-signup form.