Get company data by organization number API
Just send the ID. We'll automatically detect the country and find the company.
Code Example
curl -X GET "https://api.nordfetch.com/v1/company/915933149" \
-H "Authorization: Bearer sk_live_your_key"The Problem: Multiple Registries
Building a Nordic-wide application usually means implementing four separate API integrations: Brønnøysund for Norway, PRH for Finland, Bolagsverket for Sweden, and CVR for Denmark. Each has its own authentication, format, and quirks.
The Solution: Smart Routing
Our smart routing logic analyzes the format of the provided organization number (e.g., length, checksum, hyphenation) to automatically route your request to the correct Nordic registry. You don't need to specify the country code if the ID format is unique.
Example JSON Response
The response includes metadata about which registry was queried.
{
"id": "915933149",
"name": "Example Company AS",
"country": "NO",
"detectedRegistry": "brreg"
}Supported ID Formats
- 🇳🇴 Norway 9 digits
- 🇫🇮 Finland 8 digits (7 + hyphen)
- 🇸🇪 Sweden 10 digits
- 🇩🇰 Denmark 8 digits (CVR)
Get Started
Check the API Documentation for detailed routing logic.