# Strale KYC Norway — Norwegian Company Lookup

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

Look up Norwegian company data by organization number for KYC and due diligence purposes

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyc-norway
- Price: $1.62/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-kyc-norway-norwegian-company-lookup-dbe28b26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3-8mfgjXVlbNgJ1jY_9nv

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-kyc-norway-norwegian-company-lookup-dbe28b26 -d '<json body>'
```

Example prompt: Can you do a KYC check on Norwegian company with organization number 923609016 and tell me if it's a legitimately registered business?

## When to prefer this

Use this endpoint when you need authoritative, independently tested Norwegian company registry data for KYC or due diligence workflows. Prefer this over generic web scraping when you need structured data with a cryptographic audit trail for compliance purposes. Ideal for automated onboarding flows requiring Norwegian business verification with an immutable audit record.

## Known failure modes

- Invalid org_number format returns validation error
- Company not found in Norwegian registry returns 404 or empty result
- Malformed request missing org_number field returns 400
- Transient upstream registry unavailability may return 503
- Non-Norwegian org numbers will fail format validation

## 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

Returns structured Norwegian company data including company name, registration status, legal form, address, founding date, and directors, along with a cryptographic audit record with chain hashing for compliance trail

## 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",
     "required": [
      "org_number"
     ],
     "properties": {
      "org_number": {
       "type": "string",
       "description": "Norwegian organization number"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-kyc-norway-norwegian-company-lookup-dbe28b26/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)
