# Danish Company CVR Lookup

> Danish Company CVR Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15).

Looks up Danish company data from the Central Business Register (CVR) by CVR number or company name

## Facts

- Endpoint: GET https://api.strale.io/x402/danish-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-080afd53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w3oSIzTg5HXvbtXJD_DGG

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 api-strale-io-080afd53
```

Example prompt: Can you look up the company details for LEGO from the Danish CVR register — I need their address, VAT number, business type, and current status?

## When to prefer this

Use this endpoint when you need to verify or enrich data about a Danish company, confirm VAT/CVR numbers, look up registered addresses, or validate business status. Prefer over generic web search when structured, authoritative registry data is required.

## Known failure modes

- CVR number not found — company does not exist in the register
- Invalid CVR number format — must be exactly 8 digits
- Company name fuzzy search returns no match or ambiguous results
- API returns 402 if payment header is missing or insufficient
- Rate limiting or upstream CVR register unavailability

## How this service works

Look up Danish company data from the Central Business Register (CVR). Accepts CVR number (8 digits) or company name. Returns company name, CVR number, VAT number, business type, industry, address, and status. SQS: 60/100.

## Output

Returns structured company record including company name, CVR number, VAT number, business type, industry classification, registered address, and current operational status for the matched Danish company.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cvr_number": {
       "type": "string",
       "description": "CVR number (8 digits). If you only have a company name, use the company_name field."
      },
      "company_name": {
       "type": "string",
       "description": "Company name for fuzzy search (e.g. Novo Nordisk, Maersk, LEGO)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-080afd53/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)
