Official Norwegian company registry (Enhetsregisteret) via data
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.
3000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-09
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "equinor",
"size": 1
},
"type": "http"
},
"output": {
"example": {
"results": [
{
"address": {
"city": "STAVANGER",
"country_code": "NO",
"municipality": "STAVANGER",
"postal_code": "4035",
"street": [
"Forusbeen 50"
]
},
"bankrupt": false,
"employees": 21393,
"nace": {
"code": "06.100",
"description": "Utvinning av råolje"
},
"name": "EQUINOR ASA",
"natural_person": false,
"org_form": {
"code": "ASA",
"description": "Allmennaksjeselskap"
},
"orgnr": "923609016",
"registration_date": "1995-03-12",
"under_forced_liquidation": false,
"under_liquidation": false,
"vat_registered": true
}
],
"source": "data.brreg.no Enhetsregisteret (Bronnoysund Register Centre, NLOD 2.0); personal contact data removed",
"total_results": 1
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"q": {
"description": "Company name or 9-digit organisation number (orgnr)",
"type": "string"
},
"size": {
"default": 3,
"description": "Results per page for name search (1-10)",
"type": "integer"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/no/company" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/no/company");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/no/company")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3909.json, and this resource appears in /discovery/resources and /discovery/search.