apify-public-registries

作者: apify

查詢來自11個國家/地區(捷克、斯洛伐克、波蘭、德國、英國、荷蘭、羅馬尼亞、克羅埃西亞、瑞典 + 歐盟層級 + ESG)的歐洲公共登記處官方公司資料。涵蓋公司…

npx skills add https://github.com/apify/awesome-skills --skill apify-public-registries

Public Company Registries — 11 Countries

Look up official company data from European public registries via Python scripts (direct REST API) or Apify actor fallback (scraping when no API exists).

Prerequisites

  • Python 3 (scripts use stdlib — no pip dependencies for most countries)
  • Apify access (only for DE, UK, PL financials, CZ justice.cz, RO fallback) — preferred: apify CLI (npm install -g apify-cli && apify login); fallback: Apify MCP connector (call-actor tool). CLI is faster and preferred when both are available.
  • NL: KVK_API_KEY env var (register at developers.kvk.nl — see REGISTRATION/NL.md)
  • PL GUS: GUS_API_KEY env var (email regon_bir@stat.gov.pl)
  • SE: Bolagsverket requires registration (see REGISTRATION/SE.md)
  • HR: Sudski registar requires OAuth registration (see REGISTRATION/HR.md)

${CLAUDE_PLUGIN_ROOT} is the plugin's root directory (where .claude-plugin/ lives). It is resolved automatically by Claude Code when the plugin is installed, or set to the --plugin-dir path during development.

Workflow checklist

Copy this and tick boxes as you progress:

Task Progress:
- [ ] Step 0: Verify prerequisites — run `python3 --version` (required); for Apify-dependent registries: try `apify --version && apify info`, or check for `call-actor` MCP tool; if neither, tell user to install apify CLI or Apify MCP connector
- [ ] Step 1: Identify country + identifier type (IČO/KRS/CUI/LEI/company name)
- [ ] Step 2: Run the lookup command per country table
- [ ] Step 3: Interpret results (key fields vary by source)
- [ ] Optional: Apify fallback for scraping-based registries
- [ ] Optional: Cross-reference with EU-level sources (GLEIF LEI, ESMA bonds, EBA)

Quick Reference — Lookup by Country

All paths relative to ${CLAUDE_PLUGIN_ROOT}/skills/apify-public-registries/.

CountryCommandIdentifierAccess
CZpython3 reference/scripts/CZ/fetch_all.py lookup <IČO>IČO (8-digit)Free (ARES API)
SKpython3 reference/scripts/SK/fetch_all.py lookup <IČO>IČOFree (ORSR scraping)
PLpython3 reference/scripts/PL/fetch_all.py lookup <KRS>KRS (10-digit, zero-padded)Free (KRS API)
PLpython3 reference/scripts/PL/fetch_all.py lookup_nip <NIP>NIP (10-digit)Free (Biała Lista, 100/day)
PL GUS(included in batch fetch_all.py)NIPGUS_API_KEY REQUIRED — without it, returns fake test data silently (see gotchas)
DEpython3 reference/scripts/DE/fetch_all.py keyword <name>Company nameApify (mcpc CLI)
UKpython3 reference/scripts/UK/fetch_all.py search <name>Company nameApify (mcpc CLI)
NLpython3 reference/scripts/NL/fetch_all.pyKVK number (configured)API key (KVK_API_KEY)
ROpython3 reference/scripts/RO/fetch_all.py lookup <CUI>CUI numberFree (ANAF — offline since 2026-03)
HRManual — see REGISTRATION/HR.mdOIB / MBSOAuth registration
SEManual — see REGISTRATION/SE.mdOrg.nrBolagsverket registration
EUpython3 reference/scripts/EU/fetch_all.py lookup <name>Company nameFree (GLEIF + ESMA + TED)
EUpython3 reference/scripts/EU/fetch_all.py lookup_lei <LEI>LEI (20-char)Free (GLEIF)
ESGpython3 reference/scripts/ESG/fetch_all.py lookup <country>Country name/ISO codeFree

By Data Type

NeedBest sourceCommand
Basic profile (name, address, legal form)CZ: ARES, SK: ORSR, PL: KRS, DE: Handelsregister, UK: Companies HouseSee country table above
Ownership / corporate treeEU GLEIFEU/fetch_all.py lookup_lei <LEI>
Financial filings (CZ)Justice.cz sbírka listin (Apify fallback)CZ/fetch_all.py justice
Financial filings (SK)FinStat.skSK/fetch_all.py finstat
Financial filings (PL)eKRS via ApifyPL/fetch_all.py financials
Bonds & instrumentsESMA FIRDSEU/fetch_all.py lookup <name>
VAT / due diligence (CZ)DPH registerIncluded in CZ/fetch_all.py lookup
VAT / due diligence (PL)Biała ListaPL/fetch_all.py lookup_nip <NIP>
Bank regulatory dataEBA Transparency CSVs (100MB+)EU/fetch_all.py eba
ESG / emissionsClimate TRACE + EU ETSESG/fetch_all.py lookup <country>
Regulated entities (CZ)ČNB bank list + OAMCZ/fetch_all.py cnb_banks / cnb_oam
Public procurementTEDEU/fetch_all.py lookup <name>

Step 1: Identify country + identifier

  • Check ${CLAUDE_PLUGIN_ROOT}/data/companies.json -> identifiers.registry_ids for existing IDs.
  • If identifier unknown, start with EU GLEIF by name — returns LEI + registered-as numbers usable in country-specific lookups.

Identifier types by country:

  • CZ/SK: IČO (8-digit)
  • PL: KRS (10-digit zero-padded) or NIP (10-digit)
  • DE: Company name keyword
  • UK: Company name
  • NL: KVK number (8-digit)
  • RO: CUI (numeric)
  • HR: OIB (11-digit) or MBS
  • SE: Organisationsnummer (10-digit, e.g. 559124-6847)
  • EU: LEI (20-char alphanumeric) or company name

Step 2: Run lookup

Execute the command from the country table. Scripts are at: ${CLAUDE_PLUGIN_ROOT}/skills/apify-public-registries/reference/scripts/<CC>/fetch_all.py

Example — look up a company in Czech ARES:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/apify-public-registries/reference/scripts/CZ/fetch_all.py lookup 25099345

Example — find ownership chain via GLEIF:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/apify-public-registries/reference/scripts/EU/fetch_all.py lookup_lei 31570048XH84U51GGT05

Example — look up InPost in KRS:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/apify-public-registries/reference/scripts/PL/fetch_all.py lookup 0000536554

Batch fetch (all companies in a country):

python3 reference/scripts/CZ/fetch_all.py          # all CZ sources (ares, dph, cnb_banks, cnb_oam, justice)
python3 reference/scripts/PL/fetch_all.py          # all PL sources (krs, biala_lista, gus, financials)
python3 reference/scripts/EU/fetch_all.py          # all EU sources except EBA (gleif, ted, esma, eurostat)

Step 3: Interpret results

Key fields vary by source:

SourceKey fields
ARES (CZ)obchodniJmeno, dic, sidlo.textovaAdresa, czNace, datumVzniku, pravniForma
DPH (CZ)nespolehlivyPlatce (unreliable payer flag), bank accounts
GLEIF (EU)lei, legalName, jurisdiction, status, registeredAs, parent LEI + name
KRS (PL)nazwa, nip, regon, kapital (share capital)
Biała Lista (PL)statusVat, krs, regon, accountNumbers
ORSR (SK)name, address, legal_form, share_capital, registration_date
FinStat (SK)revenue, profit, employees, assets
Handelsregister (DE)name, legal form, share capital, management, HRB number
Companies House (UK)company number, SIC codes, directors, incorporation date
ESMA FIRDS (EU)isin, lei, instrument name, cfi_code, status
TED (EU)buyer-name, winner-name, total-value, procedure-type
ANAF (RO)denumire, adresa, scpTVA (VAT payer flag), active status

Apify fallback

When no direct API exists, use Apify CLI with a specific actor or apify/website-content-crawler:

apify call apify/website-content-crawler \
  --input '{"startUrls":[{"url":"https://or.justice.cz/ias/ui/rejstrik-$firma?ico=25099345"}],"maxCrawlPages":1}' \
  --user-agent apify-awesome-skills/apify-public-registries

Apify-dependent registries:

CountryRegistryActorTrigger
DEHandelsregisterradeance/handelsregister-apiDE/fetch_all.py keyword <name>
UKCompanies Housedhrumil/company-house-scraperUK/fetch_all.py search <name>
PLeKRS Financialsminute_contest/poland-krs-financial-scraperPL/fetch_all.py financials
CZJustice.cz filingsapify/website-content-crawlerDirect via apify CLI
ROListaFirme.roapify/website-content-crawlerRO/fetch_all.py listafirme
SEAllabolag.seapify/website-content-crawlerManual (residential proxy needed)

Note: DE, UK, and RO scripts use mcpc CLI internally (not apify CLI).

Dependencies

Python stdlib only (no pip)

CZ (ares, dph, cnb_banks, cnb_oam, justice), SK (orsr, finstat), PL (krs, biala_lista, gus), EU (gleif, esma, ted, eurostat), ESG (ets, climate_trace), RO (anaf)

Requires Apify + APIFY_TOKEN

DE (handelsregister), UK (companies_house), PL (financials via eKRS), CZ (justice.cz sbírka listin via scraping), RO (listafirme.ro)

Requires API key registration

Critical gotchas

  • CZ ARES is the best single starting point for Czech companies — aggregates data from multiple source registers.
  • EU GLEIF is the best cross-country starting point — maps LEI to registered-as numbers usable in country lookups.
  • RO ANAF API is offline since March 2026 — lookup returns errors. Use listafirme.ro (Apify) as fallback.
  • SK ORSR uses HTML scraping with windows-1250 encoding and regex parsing — fragile, may break if page layout changes.
  • SK FinStat is also HTML scraping — may block automated access.
  • PL Biała Lista has a hard rate limit: 100 queries/day (search method) or 5,000/day (check method).
  • PL GUS silently returns fake data when GUS_API_KEY is unset — test server returns plausible-looking records (ul. Test-Krucza, Kraków-Podgórze) for any valid NIP. Production key required: email regon_bir@stat.gov.pl. Always inspect first GUS record to confirm prod vs test.
  • DE + UK scripts use mcpc CLI (not apify CLI) — require authenticated @apify session.
  • UK Companies House has a free API at api.company-information.service.gov.uk, but the script uses Apify scraping instead.
  • CZ Justice.cz bulk datasets are 13GB+ XML/CSV. The CKAN API returns a dataset list, not per-company data.
  • CZ ČNB OAM is only relevant for emitents (listed companies, banks) — uses Oracle BI XML export.
  • ESG data is country-level, not company-level — useful only as contextual benchmark.
  • ESAP (centralized EU ESG/financial database with API) launches CSRD data January 2028.
  • EBA Transparency CSVs are 100MB+ each — run EU/fetch_all.py eba separately, not as part of normal batch.
  • TED has low value — most portfolio companies are private. Winner-name only in eForms notices (2024+).
  • Batch mode (fetch_all.py without arguments) reads lookup_targets.json from the script's directory — these are per-country ID→name mappings, NOT copies of data/companies.json. For single-company lookups, pass the identifier directly.

Reference

來自 apify 的更多技能

bug-triage
apify
分類處理 apify/apify-mcp-server 上的未解決錯誤問題。分析、草擬回覆、取得批准、發布。
official
apify-influencer-brand-collabs
apify
探索Instagram品牌與創作者的合作關係,透過串聯Apify Actors。當使用者詢問某品牌與誰合作、某創作者曾與哪些品牌進行付費合作時使用…
official
dig
apify
用於在 Apify MCP 伺服器上探索、規劃與規格化工作的靈活技能。請勿編輯原始檔案——此技能僅供理解與規劃使用。
official
apify-financial-news
apify
探索並提取追蹤投資組合公司在33個經認證的一級來源(彭博、路透、金融時報、華爾街日報、IntelliNews、ČTK、PAP、BTA…)中的財經新聞。
official
apify-actor-development
apify
建立、除錯及部署無伺服器雲端程式,用於網頁爬取、自動化及資料處理。支援 JavaScript、TypeScript 及 Python 範本,內建 Crawlee、Playwright 與 Cheerio 函式庫,適用於 HTTP 及瀏覽器爬取。包含透過 apify run 進行本地測試(具備隔離儲存)、輸入/輸出結構驗證,以及透過 apify push 部署至 Apify 平台。需進行 Apify CLI 驗證,並在 .actor/actor.json 中強制加入 generatedBy 元資料以供 AI 使用...
official
apify-actorization
apify
將現有專案轉換為無伺服器 Apify Actors,並整合語言專屬 SDK。支援 JavaScript/TypeScript(使用 Actor.init() / Actor.exit())、Python(非同步上下文管理器),以及透過 CLI 包裝器的任何語言。提供結構化工作流程:使用 apify init 建立專案骨架、套用 SDK 包裝、設定輸入/輸出架構、以 apify run 進行本地測試,再透過 apify push 部署。包含輸入與輸出架構驗證、Docker 容器化,以及可選的按事件付費...
official
apify-generate-output-schema
apify
為 Apify Actor 分析其原始碼,生成輸出結構(dataset_schema.json、output_schema.json、key_value_store_schema.json)。用於…
official
apify-ultimate-scraper
apify
自動化網頁爬蟲,為55多個平台選擇最佳Actor,包括Instagram、TikTok、YouTube、Facebook、Google地圖等。涵蓋8大主要平台的55多個預配置Actor,並提供針對特定使用案例的選擇指引(潛在客戶開發、網紅發現、品牌監控、競爭對手分析、趨勢研究)。支援三種輸出格式:快速聊天顯示、CSV匯出或JSON匯出,並可自訂結果數量限制。包含多Actor工作流程模式,適用於複雜...
official