# Norwegian Company Registry Lookup (Brønnøysund / Enhetsregisteret)

> Norwegian Company Registry Lookup (Brønnøysund / Enhetsregisteret) is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Looks up Norwegian company information from the official Enhetsregisteret registry by company name or organisation number, returning legal, financial, and operational details.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/no/company
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/norwegian-company-registry-lookup-br-nn-ysund-enhetsregisteret-08b01daf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M5qWjtYYY8VNIRYTU-h__

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 norwegian-company-registry-lookup-br-nn-ysund-enhetsregisteret-08b01daf
```

Example prompt: Can you pull up the official Norwegian company registry details for Equinor — I need their org number, legal form, NACE code, VAT status, and whether they have any bankruptcy flags?

## When to prefer this

Use this endpoint when you need authoritative Norwegian company data from the official government registry (Enhetsregisteret). Prefer this over generic web search when you need structured fields like orgnr, NACE code, VAT status, or bankruptcy flags. Best for compliance, due diligence, business verification, or data enrichment workflows targeting Norwegian legal entities. For Czech companies, use the sibling ARES endpoint instead.

## Known failure modes

- No company found matching the name or orgnr — empty result set returned
- Invalid orgnr format (not 9 digits) — likely returns empty or error
- Size parameter out of range (outside 1-10) — may default or error
- Upstream data.brreg.no unavailable — service may return 5xx or stale cached data
- Query string missing 'q' parameter — returns 400 bad request

## How this service works

Official Norwegian company registry (Enhetsregisteret) via data.brreg.no, Bronnoysund Register Centre. Query: ?q=equinor or ?q=923609016 (name or 9-digit orgnr), optional size (1-10, name search). Returns orgnr, legal form, NACE code, business address, registration date, employees, VAT registration, bankruptcy and liquidation flags per company. NLOD 2.0 licensed, personal data stripped. 24h cache.

## Output

Returns a list of matching Norwegian companies (up to 10) each with: organisation number (orgnr), legal form, NACE industry code, registered business address, incorporation/registration date, employee count, VAT registration status, and boolean flags for bankruptcy and liquidation. Data is sourced from the official Enhetsregisteret and cached for 24 hours. Licensed under NLOD 2.0 with personal data stripped.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name or 9-digit organisation number (orgnr)"
      },
      "size": {
       "type": "integer",
       "default": 3,
       "description": "Results per page for name search (1-10)"
      }
     }
    }
   },
   "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/norwegian-company-registry-lookup-br-nn-ysund-enhetsregisteret-08b01daf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
