The EU Anti-Money Laundering Regulation (Regulation (EU) 2024/1624), applying from 10 July 2027, treats KYB as an ongoing duty, not a one-time gate at signup: keep customer records current, re-verify on a risk-based cycle, and act on trigger events. Today's AMLD5/6 transpositions and the UK MLR 2017 already point the same way. Prometiam turns that duty into a scheduled job against one REST API instead of a once-a-year manual re-check.
POST /companies/lookup (up to 100 items per call) and diff status, dissolution_date, address, legal_form and previous_names against the stored record — annually for low risk, quarterly for high risk.POST /monitor gives Spanish, Irish and Polish customers HMAC-SHA256-signed webhooks on corporate events, status changes and sanctions matches. A daily GET /company-events/search?date_from= sweep covers Spanish, French and British customers for dissolution, insolvency, director, capital, name and address changes.GET /sanctions/changes?since= reports what was listed, delisted or updated since the last run, then POST /sanctions/screen re-checks the book (beta; PEP screening is beta, Spain only, and holds no relatives or close associates).POST /insolvency/check covers nine corporate-insolvency markets (FR, DE, GB, AT, CH, NO, FI, US, NL); Spanish concursal notices are checked separately, on GET /search, not /insolvency/search.match_score, the threshold used, and the review date.Norway has no corporate-event stream and sits outside the three countries POST /monitor covers, so Norwegian customers get the calendar-driven lookup diff plus sanctions and insolvency checks, not the daily sweep or webhooks. Ireland and Poland are company-level, with no officers to re-verify yet. A 5,000-customer book — annual re-verification, quarterly sanctions re-screening, and a daily events sweep for its Spanish, French and British names — runs to roughly 45,000 to 55,000 calls in its busiest month, inside the Professional tier (100,000 calls a month). A 500-customer book fits Starter. This describes what the API returns; it is not legal advice on whether a program satisfies the AMLR.
Read more · The AMLR compliance timeline · Get a free API key