Brønnøysund API JSON example

See how to fetch data from the Brønnøysund Register using standard JSON, bypassing complex legacy formats.

Code Example

curl -X GET "https://api.nordfetch.com/v1/norway/company/915933149" \
  -H "Authorization: Bearer sk_live_your_key"

The Problem: Brønnøysund XML/SOAP

While the Brønnøysund Register is an excellent source of truth for Norwegian companies, its native interfaces can be challenging. Many endpoints still rely on SOAP or nested XML structures that don't map cleanly to modern JavaScript applications.

The Solution: Normalized JSON

NordFetch acts as a middleware layer. We ingest the raw data from Brønnøysund, parse the complex structures, handle encoding issues, and map everything to a strictly typed JSON schema. This ensures that `address.city` is always where you expect it, regardless of the underlying source format.

Example JSON Response

Here is a typical response object when querying for a Norwegian company. Notice the standardized field names and simplified structure.

{
  "id": "915933149",
  "name": "NORDIC SEMICONDUCTOR ASA",
  "status": "active",
  "address": {
    "street": "Otto Nielsens veg 12",
    "zip": "7052",
    "city": "TRONDHEIM",
    "country": "NO"
  },
  "employees": 1450,
  "industryCode": "26.110"
}

Get Started

Looking for full documentation? Check out our API Docs for valid parameters and authentication details.

Ready to integrate?

Get your instant API key and start fetching company data in seconds. No credit card required for the free tier.