# Sirenic Norwegian Company Registry Lookup

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

Looks up a Norwegian company by its 9-digit organisasjonsnummer (Enhetsregisteret) and returns legal name, form, status, incorporation date, registered office, VAT/MVA, and LEI in a unified JSON schema.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/NO/:id
- Price: $0.01/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-registry-lookup-10ab644b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_US0HB7dYGmcn-UQSN3x2c

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-registry-lookup-10ab644b
```

Example prompt: Can you look up Norwegian company 923609016 in the official Enhetsregisteret and tell me its legal name, registration status, registered address, and VAT number?

## When to prefer this

Choose this endpoint when you need authoritative, official Norwegian company data sourced directly from Brønnøysundregistrene/Enhetsregisteret. It is ideal for KYC, supplier verification, invoice validation, or any workflow requiring legally reliable Norwegian entity data with VAT/MVA and LEI fields in a normalized cross-European JSON schema. Prefer it over web scraping or third-party aggregators when data freshness and official provenance matter.

## Known failure modes

- Invalid or malformed organisasjonsnummer (not exactly 9 digits) returns a 400 error
- Company not found in Enhetsregisteret returns a 404 error
- Upstream Brønnøysundregistrene registry downtime may cause 503 or timeout
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Official Norwegian company registry lookup (Brønnøysundregistrene / Enhetsregisteret — BRREG open data). Query: /v1/eu/entreprise/NO/923609016 (9-digit organisasjonsnummer). Returns legal name, legal form, normalized status, incorporation date, registered office, VAT/MVA and LEI — Norwegian company data from Norway's official register, the Enhetsregisteret (NLOD open data). Unified JSON schema shared by all Sirenic European company profiles.

## Output

A unified JSON object containing the company's legal name, legal form code, normalized status (e.g. active/dissolved), incorporation date, registered office address, VAT/MVA registration number, and LEI, sourced from the official Norwegian Enhetsregisteret via NLOD open data.

## 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": "Norwegian organisasjonsnummer, exactly 9 digits (Enhetsregisteret / Brønnøysundregistrene)., e.g. 923609016"
      }
     }
    },
    "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-registry-lookup-10ab644b/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)
