Company Search is live — 1.3M+ Swedish companies, one request
Swedish company data is finally accessible. One GET request gets you org number, name, address, SNI codes, and employee count — straight from SCB's business register. We handle the certificates. You write business logic.
Why company search?
Swedish company data has sat behind SOAP endpoints, .pfx certificate auth, and manual CSV exports for years. Building KYC flows, supplier lookups, or market tools meant talking directly to SCB's private API — writing custom XML parsers, rotating certificates, and staying under 10 req/10s yourself.
That's a week of plumbing before you write a line of business logic. We did the plumbing.
How it works
Make a GET request with your API key:
GET /v1/companies/search?q=klarna
Authorization: Bearer sk_live_...
The response looks like this:
{
"data": [
{
"org_number": "556737-0431",
"name": "Klarna Bank AB",
"legal_form": "Aktiebolag",
"status": "active",
"address": "Sveavägen 46",
"postal_code": "111 34",
"city": "Stockholm",
"municipality": "Stockholm",
"county": "Stockholms län",
"sni_codes": ["64191", "66190"],
"employees": 5000,
"registered_date": "2007-09-05"
}
],
"meta": { "total": 3, "query": "klarna" }
}
Available query parameters
| Parameter | Description | Example |
|---|---|---|
| q | Free text — matches company name (contains) | q=volvo |
| org_number | Exact org number (with or without hyphen) | org_number=556737-0431 |
| municipality | Municipality name | municipality=Göteborg |
| sni | SNI industry code (5 digits) | sni=62010 |
| legal_form | Legal form | legal_form=Aktiebolag |
| limit | Max results (default 20, max 100) | limit=50 |
Daily quota limits
This endpoint proxies SCB's private certificate API. To protect the shared certificate, we cap daily usage per key:
| Plan | Requests / day |
|---|---|
| Free | 20 |
| Starter | 100 |
| Pro | 500 |
Need higher limits? Email hello@apiverket.se.
Ready to try it?
Grab an API key. Under a minute to sign up, no credit card required.
Create a free account →