Denmark company registry JSON
Direct access to the Danish CVR (Central Business Register) data, formatted as clean-cut JSON for modern applications.
Code Example
curl -X GET "https://api.nordfetch.com/v1/denmark/company/12345678" \
-H "Authorization: Bearer sk_live_your_key"The Problem: CVR Integration Overhead
The Danish Official Central Business Register (CVR) provides excellent data but can be heavy to integrate directly. Handling authentication, rate limiting, and mapping the extensive CVR data model to a simple application structure takes time.
The Solution: Streamlined CVR API
NordFetch provides a pass-through layer that caches and normalizes CVR data. You get the essential business details—name, address, status, and registration info—without the overhead.
Example JSON Response
Data is mapped to our standard Nordic model.
{
"id": "12345678",
"name": "LEGO SYSTEM A/S",
"status": "active",
"address": {
"street": "Åstvej 1",
"zip": "7190",
"city": "BILLUND",
"country": "DK"
},
"registrationDate": "1932-08-10",
"vatNumber": "DK12345678",
"type": "Aktieselskab"
}Get Started
Ready to query Danish companies? Check the API Documentation for full details.