Norwegian Company Registry Lookup (Brreg)

Category: Company Registry — Norway  |  Path: /no/company/923609016  |  Price: $0.005 USDC per call via x402 on Base mainnet
Payment protocol: x402 (HTTP 402 Payment Required) on Base mainnet. No API key or subscription required. AI agents pay per call in USDC using the Coinbase CDP facilitator (https://api.cdp.coinbase.com/platform/v2/x402). Discovery: /.well-known/x402 | agent.json | OpenAPI spec | llms.txt

Description

Lookup or search Norwegian companies in the official Brønnøysund Register Centre (Brreg). Returns company name, organisation number, registration date, status (active/dissolved), registered address, industry code (NACE), and entity type. Covers all Norwegian businesses, organisations, and legal entities.

Two variants: lookup by 9-digit organisation number (/no/company/{orgnr}) and name search (/no/company/search/{name}). Used for counterparty due diligence on Norwegian entities.

Data sources

Agent use cases

This endpoint is designed for AI agents. Typical callers include:

Response schema

{
  "orgnr":             "923609016",
  "name":              "EXAMPLE AS",
  "status":            "active",
  "registration_date": "2018-03-15",
  "entity_type":       "AS",         // Aksjeselskap (limited company)
  "nace_code":         "62.010",
  "address": { "street": "...", "city": "Oslo", "postcode": "0150", "country": "NO" },
  "source":            "Brønnøysundregistrene"
}

Example call

GET https://globalapi.dev/no/company/923609016 — $0.005 USDC via x402

How to call this endpoint via x402

  1. Send a standard HTTP GET request to /no/company/923609016
  2. Receive a 402 Payment Required response with a payment-required header containing base64-encoded payment instructions
  3. Submit payment via the Coinbase CDP facilitator using the x402 client library
  4. Retry the request with the signed payment-signature header
  5. Receive a 200 OK response with the data payload

Compatible client libraries: @x402/client (TypeScript), x402-python (Python).