# Trade-register notices of a Finnish company

The Finnish trade register publishes each company's life as a sequence of coded notices. This route serves them live from the PRH open API, with the 244 codes translated and placed in closed families, plus VAT, prepayment and employer register memberships.

## What the route returns

Catalogue description, exactly as agents read it:

**Finnish trade-register notices from the PRH open data (CC BY 4.0, live, 24 h cache): every notice since late 2014 — date, type (formation, change, annual accounts, rectification, merger) and its entry codes (board, representation, capital, shares, office, auditors, articles, bankruptcy, restructuring, liquidation, removal, merger…) with PRH labels in EN/FI/SV and a closed family; register memberships (trade, VAT, prepayment, employer). Query: /v1/eu/entreprise/FI/0112038-9/evenements.**

## Expected identifier

**Seven-digit** Business ID with hyphen and check digit (e.g. 0112038-9).

> ⚠️ A wrongly formatted identifier in the **path** returns `400` and is **not billed** — but it costs you a round trip. It is the leading cause of failed calls on the foreign routes. A **search** parameter, by contrast, is cleaned up: unsupported characters are stripped and the usable query is served.

## Extract from a genuinely paid response

Dated snapshot from 2026-09-18, truncated to one item per array. It is not live data. The full extract is served **free of charge** from [the samples surface](https://api.sirenic.eu/exemples/), and the schema from the OpenAPI document.

```
{
 "pays": "FI",
 "id_national": "0112038-9",
 "denomination": "Nokia Oyj",
 "nombre_evenements": 162,
 "premier_avis_le": "2014-11-28",
 "dernier_avis_le": "2026-06-08",
 "aucun_avis": false,
 "evenements": [
  {
   "date": "2026-06-08",
   "reference": "2026/300040",
   "type": "modification",
   "type_source": "M",
   "inscriptions": [
    {
     "code": "NIMP",
     "libelle": {
      "en": "PROCURATION RIGHTS",
      "fi": "PROKURAT",
      "sv": "PROKURA"
     },
     "famille": "representation"
    }
   ]
  },
  {
   "date": "2026-06-05",
   "reference": "2026/46611V",
   "type": "comptes_annuels",
   "type_source": "TA",
   "inscriptions": [
    {
     "code": "TASE",
     "libelle": {
      "en": "FINANCIAL STATEMENTS",
      "fi": "TILINPÄÄTÖS",
      "sv": "BOKSLUT"
     },
     "famille": "comptes"
    }
   ]
  }
 ],
 "procedures_inscrites": [],
 "registres": [
  {
   "registre": "registre_commerce",
   "registre_code": "1",
   "statut": {
    "en": "Registered"
   },
   "autorite": "PRH (Patentti- ja rekisterihallitus)",
   "inscrit_le": "1896-12-19",
   "radie_le": null
  },
  {
   "registre": "tva",
   "registre_code": "6",
   "statut": {
    "en": "VAT-liable for business activity"
   },
   "autorite": "Verohallinto (administration fiscale)",
   "inscrit_le": "1994-06-01",
   "radie_le": null
  }
 ],
 "tva_active": true,
 "consulte_le": "2026-09-18T02:05:17.000Z"
}
```

## Price and billing

Price: **$0.02**. The authoritative amount is the one in the `402` quote returned by the route itself — not this text, which derives from the same grid but is still just a page.

An error response **cancels the payment**: a `400`, `404` or `503` is never billed. An upstream outage closes the route with a `503` rather than serving a degraded response.

## Calling the route

```
# 1. Le devis, sans rien payer : la route répond 402 avec son montant
curl -i https://api.sirenic.eu/v1/eu/entreprise/FI/{id}/evenements

# 2. L'appel réglé — le client x402 paie le devis et rejoue la requête
npx x402-fetch https://api.sirenic.eu/v1/eu/entreprise/FI/{id}/evenements

# 3. Ou en MCP, dans Claude Code / Cursor / un agent
claude mcp add --transport http sirenic https://api.sirenic.eu/mcp
```

## What this route does not do

Codes and dates, never a text or a person; `aucun_avis` is a register fact bounded by digitisation (late 2014). **Sole proprietorships are outside PRH open data.**

## Neighbouring routes

- `/v1/eu/entreprise/FI/{id}` — $0.01
- `/v1/eu/entreprise/{pays}/{id}/comptes` — $0.01
- `/v1/eu/entreprise/SE/{orgnr}/evenements` — $0.02

## How you pay

Every route is paid **per call**, in USDC or EURC on the Base network, over the x402 protocol: no account to create, no API key, no subscription. The first call returns a `402` quote your client settles, then replays the call. A failed call is never billed.

Would you rather have a euro invoice and prepaid credits? That is **in preparation**, and we will not announce a date until it is open. Write to [contact@sirenic.eu](mailto:contact@sirenic.eu?subject=Euro%20credit%20packs) and we will let you know when it opens.

Paid responses are **Ed25519-signed**: you can later prove what was served to you, and when. The whole catalogue is free to read in the [OpenAPI document](https://api.sirenic.eu/openapi.json) and in [llms.txt](https://api.sirenic.eu/llms.txt).

**One call, end to end**

```
# Client x402 (npm) — le devis 402 est réglé et l'appel rejoué automatiquement
npx x402-fetch https://api.sirenic.eu/v1/entreprise/552032534

# Ou en MCP, dans Claude Code / Cursor
claude mcp add --transport http sirenic https://api.sirenic.eu/mcp
```

## Routes used and pricing

| Route | Price | Sample | What it returns |
| --- | --- | --- | --- |
| `/v1/eu/entreprise/FI/{id}/evenements` | $0.02 | [free sample](https://api.sirenic.eu/exemples/eu-entreprise-FI-id-evenements.json) | Finnish trade-register notices from the PRH open data (CC BY 4.0, live, 24 h cache): every notice since late 2014 — date, type (formation, change, annual accounts, rectification, merger) and its entry codes (board, representation, capital, shares, office, auditors, articles, bankruptcy, restructuring, liquidation, removal, merger…) with PRH labels in EN/FI/SV and a closed family; register memberships (trade, VAT, prepayment, employer). Query: /v1/eu/entreprise/FI/0112038-9/evenements. |

## Take it further

- [See a real response (free)](https://api.sirenic.eu/exemples/eu-entreprise-FI-id-evenements.json)
- [Get the quote for /v1/eu/entreprise/FI/{id}/evenements](https://api.sirenic.eu/v1/eu/entreprise/FI/{id}/evenements)
- [Get notified about euro packs](mailto:contact@sirenic.eu?subject=Euro%20credit%20packs)

## Read next

- [Detecting insolvency proceedings](https://api.sirenic.eu/en/use-cases/detect-insolvency-proceedings-france-europe)


Volume figures on this page were measured in our database on 2026-08-19. They are dated snapshots, not live counters.

---

[Home](https://api.sirenic.eu/en) · [Pricing](https://api.sirenic.eu/en/offres) · [Guides](https://api.sirenic.eu/en/articles) · [Routes](https://api.sirenic.eu/en/api) · [Legal notice](https://api.sirenic.eu/mentions-legales) · [Privacy](https://api.sirenic.eu/en/privacy)
