# Sirenic Norwegian Company Legal Events

> Sirenic Norwegian Company Legal Events is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns official legal events (bankruptcy, winding-up, strike-off) for a Norwegian company from Enhetsregisteret, with live-checked status flags.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/NO/:id/evenements
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-norwegian-company-legal-events-544c47a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Spi1q8hJ1zNZzP1fPlfQy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sirenic-norwegian-company-legal-events-544c47a4
```

Example prompt: Can you check whether Norwegian company 926455249 has any bankruptcy, winding-up, or strike-off events on record, and confirm it's currently active with no legal flags?

## When to prefer this

Use this endpoint when you need official Norwegian legal event data (bankruptcy, winding-up, strike-off) for a legal entity identified by its 9-digit organisasjonsnummer, with live status verification at call time. Prefer this over general company lookup endpoints when the specific need is insolvency/legal-event history rather than general firmographic data. Note: covers only Norwegian legal persons — not individuals, not French (use BODACC for ruling text/court details) or Belgian entities.

## Known failure modes

- 404 if the organisasjonsnummer belongs to a natural person (ENK, PERS, TVAM) or an estate (KBO, BO) — payment is cancelled
- 404 if the organisasjonsnummer does not exist in Enhetsregisteret
- Invalid or malformed 9-digit org number returns an error
- Upstream Enhetsregisteret unavailability may cause timeout or 5xx
- Undated historical events return only an upper-bound date, not an exact date

## How this service works

Norwegian company legal events from the official Enhetsregisteret (Brreg, NLOD 2.0) for insolvency and credit risk monitoring: bankruptcy (konkurs, with the registered date), voluntary or compulsory liquidation, and strike-off, plus current flags checked live. 9-digit organisasjonsnummer. A live-verified company with no flag gets an explicit positive answer. Coarser than France's BODACC: no ruling text, no court; undated events carry an upper-bound date. Legal persons only, never individuals.

## Output

A structured list of legal events (bankruptcy/konkurs with registered date, voluntary winding-up, compulsory winding-up, strike-off) sourced from Enhetsregisteret, plus live-checked current status flags. If the company has no adverse events and all live flags are clear, an explicit positive confirmation is returned. Undated events carry an upper-bound date. Returns 404 for natural persons (ENK, PERS, TVAM) and estates (KBO, BO).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "9-digit Norwegian organisasjonsnummer (Enhetsregisteret). LEGAL PERSONS ONLY: natural-person forms (ENK, PERS, TVAM) and estates (KBO, BO) are refused 404, payment cancelled., e.g. 926455249"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sirenic-norwegian-company-legal-events-544c47a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
