# Strale Norwegian Company Data

> Strale Norwegian Company Data is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-13).

Looks up official Norwegian company data by organisation number or company name via Brønnøysundregistrene, with a cryptographic audit record on every response.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/norwegian-company-data
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-norwegian-company-data-85044319
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HWYFpAZVsrnQmG3iXjOpH

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 strale-norwegian-company-data-85044319
```

Example prompt: Can you look up the official company details for Telenor in Norway — I need their organisation number and registered legal name from Brønnøysundregistrene?

## When to prefer this

Choose this endpoint when you need verified, audit-trailed legal entity data for Norwegian companies specifically — particularly for compliance, due diligence, KYC, or contract workflows where you need confidence that a name resolves to the correct registered entity. Prefer it over generic web search when you need structured, machine-readable output with a cryptographic audit trail. Note that it refuses ambiguous name matches rather than guessing, which makes it safer for high-stakes verification than a fuzzy-match approach.

## Known failure modes

- Ambiguous company name refused rather than resolved to a wrong entity — returns an error asking for clarification or org number
- Unknown organisation number returns a not-found error
- Malformed 9-digit org number returns a validation error
- Network or upstream Brønnøysundregistrene outage returns a service error
- Missing required query parameter (no org_number, company_name, or alias) returns a 400 bad request

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Structured JSON containing the company's legal name, organisation number, registration status, and other official fields sourced from Brønnøysundregistrene, plus a cryptographic audit record with chain hashing confirming data provenance and integrity.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "anyOf": [
      {
       "required": [
        "org_number"
       ]
      },
      {
       "required": [
        "company_number"
       ]
      },
      {
       "required": [
        "company_name"
       ]
      },
      {
       "required": [
        "name"
       ]
      },
      {
       "required": [
        "query"
       ]
      },
      {
       "required": [
        "task"
       ]
      }
     ],
     "required": [],
     "properties": {
      "name": {
       "type": "string",
       "description": "Alias for company_name"
      },
      "task": {
       "type": "string",
       "description": "Free-text alias — org number or company name"
      },
      "query": {
       "type": "string",
       "description": "Free-text alias — org number or company name"
      },
      "org_number": {
       "type": "string",
       "description": "Norwegian org number, 9 digits (e.g. 923609016)"
      },
      "company_name": {
       "type": "string",
       "description": "Company name (e.g. \"Telenor\"). Resolved against Brønnøysundregistrene and accepted only on a confident name match — an ambiguous name is refused rather than resolved to the wrong legal entity."
      },
      "company_number": {
       "type": "string",
       "description": "Alias for org_number"
      }
     }
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-norwegian-company-data-85044319/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
