Swedish Company Registry — Bolagsverket Lookup avatar

Swedish Company Registry — Bolagsverket Lookup

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Swedish Company Registry — Bolagsverket Lookup

Swedish Company Registry — Bolagsverket Lookup

Under maintenance

Look up any Swedish company by org number. Name, legal form, status, address, SNI codes, board members, and financials from Bolagsverket and allabolag.se. Essential for KYC/AML compliance, B2B lead generation, procurement due diligence, and Swedish market intelligence.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

C R

C R

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

5 days ago

Last modified

Share

Swedish Company Registry Lookup 🇸🇪

An Apify Actor that looks up Swedish company information using the organization number. Queries data from allabolag.se (a public Swedish business directory) without requiring any API keys.

Features

  • No API key needed — uses publicly accessible data from allabolag.se
  • Pure HTTP — no browser/Playwright required, fast and lightweight
  • Rich data — company name, legal form, status, address, industry (SNI) codes, board members, and financials
  • Flexible input — accepts 10 or 12 digit org numbers, with or without dash

Input

FieldTypeRequiredDefaultDescription
orgNumberstringSwedish organization number (e.g., 556703-7485 or 5567037485)
includeFinancialsbooleanfalseInclude financial key figures (revenue, profit, employees)
includeDocumentsbooleanfalseList available documents and filings

Example Input

{
"orgNumber": "556703-7485",
"includeFinancials": true,
"includeDocuments": false
}

Output

The Actor pushes results to the default dataset. Each result has this structure:

{
"org_number": "5567037485",
"name": "Spotify AB",
"legal_form": "Aktiebolag",
"status": "active",
"registration_date": "2006-05-10",
"address": {
"street": "Regeringsgatan 19 5tr",
"postal_code": "111 53",
"city": "Stockholm",
"municipality": "Stockholm",
"county": "Stockholms Län"
},
"industry": {
"sni_code": "60100",
"description": "Radiosändning och distribution av ljudinspelningar"
},
"board_members": [
{ "name": "Carl Peter Christian Luiga", "role": "Ordförande", "birth_year": "1968" }
],
"financials": {
"revenue": 114518989,
"profit": 19299658,
"employees": 1271,
"year": "2025"
},
"documents": [],
"source_urls": [
"https://www.allabolag.se/5567037485",
"https://www.allabolag.se/foretag/spotify-ab/stockholm/..."
],
"warnings": []
}

Error Outputs

  • Invalid org number: Returns { "error": "Invalid org number format..." }
  • Company not found: Returns { "not_found": true, "warnings": ["Company not found..."] }
  • Rate limiting / blocks: Returns partial data with a warnings entry

How It Works

  1. Validates the organization number format
  2. Fetches https://www.allabolag.se/{org_number} with a standard User-Agent
  3. Extracts the server-rendered __NEXT_DATA__ JSON blob from the HTML (Next.js SSR)
  4. Parses and structures the company data
  5. Optionally includes financial key figures and document listings

Data Sources

  • allabolag.se — primary data source (UC Affärsinformation / Enento Group)
  • Data includes official Bolagsverket registration details

Testing

Test with known Swedish companies:

  • Spotify AB: 556703-7485 or 5567037485
  • Volvo Car AB: 556810-8988 or 5568108988

Limits

  • The actor uses public web pages and may be subject to rate limiting
  • Some financial data requires a login on allabolag.se — this actor extracts what's publicly available