# Norwegian Company Registry Lookup (Enhetsregisteret)

> Norwegian Company Registry Lookup (Enhetsregisteret) is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up or searches Norwegian companies in the official Enhetsregisteret register, returning official company details including bankruptcy and liquidation status.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/no/company
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/norwegian-company-registry-lookup-enhetsregisteret-85b16d08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rg6Sg3Ky_46U4u1ieWRWi

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-enhetsregisteret-85b16d08 -d '<json body>'
```

Example prompt: Can you look up the Norwegian company with organisation number 923609016 in the official Enhetsregisteret and tell me if it's active, bankrupt, or in liquidation, along with its legal form and business address?

## When to prefer this

Use this endpoint when you need official, authoritative data on Norwegian companies specifically — particularly when verifying bankruptcy/liquidation status, confirming legal existence, or enriching business profiles with government-sourced data. Prefer over generic web searches when legal accuracy and official sourcing matter. Use the Czech ARES or Swiss Zefix endpoints for those countries instead.

## Known failure modes

- Organisation number not found — company does not exist in the register
- Ambiguous name search returns 0 results if no match found
- Invalid organisation number format returns an error
- Register temporarily unavailable causing timeout or 5xx error
- Name search returning partial or no results for very new companies not yet indexed

## How this service works

Official Norwegian company check from the Enhetsregisteret (Brønnøysund Register Centre, open data). Look up by organisation number (exact) or search by name (up to 5 candidates). Returns official name, organisation form, industry code, employee count, registration date, business address and — directly from the register — bankruptcy and liquidation flags, with a direct register link. Companies only.

## Output

Returns the official company name, organisation form, industry (NACE) code, employee count, registration date, business address, bankruptcy flag, liquidation flag, and a direct link to the company's entry in the Norwegian Enhetsregisteret register. For name searches, returns up to 5 matching candidates.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "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-enhetsregisteret-85b16d08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
