Sweden company data API
Retrieve basic Swedish company information (Aktiebolag, etc.) sourced from available open data.
Code Example
curl -X GET "https://api.nordfetch.com/v1/sweden/company/5560125790" \
-H "Authorization: Bearer sk_live_your_key"The Problem: Limited Open Data
Unlike Norway and Finland, full open data for Swedish companies is more restricted. Finding a reliable source for basic validation data without expensive enterprise contracts can be difficult.
The Solution: Basic Validation API
Our basic Sweden endpoint provides essential identification data for companies registered with Bolagsverket. This includes the organization number, official name, visiting address, and VAT number. It is perfect for form pre-filling and basic validation.
Example JSON
Clean, simple JSON for basic validation and lookup.
{
"id": "5560125790",
"name": "Telefonaktiebolaget LM Ericsson",
"status": "active",
"address": {
"street": "Torshamnsgatan 21",
"zip": "164 83",
"city": "STOCKHOLM",
"country": "SE"
},
"registrationDate": "1876-01-01",
"vatNumber": "SE556012579001"
}Get Started
See the full list of available fields in the API Documentation.