Swedish company basics by org.nr
Swedish company basics by org.nr. Look up any Swedish organisation by its 10-digit organisationsnummer (e.g. /api/v1/se/company/5567037485 for Spotify AB): registered and trade names, legal form, active status, bankruptcy/liquidation/reconstruction, registered address, SNI 2007 industry codes and activity description. Live from Bolagsverket's official register with SCB business data. No API key — pay per call in USDC.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
338 msmedian answer time
$0.005listed price per call
$0.005price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402-gateway.ai/api/v1/se/company/:orgnr
| Category | Company and compliance |
|---|---|
| Provider host | x402-gateway.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 338 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"orgnr": "5566059449"
},
"queryParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"orgnr": {
"description": "Swedish organisationsnummer, 10 digits without hyphen",
"pattern": "^\\d{10}$",
"type": "string"
}
},
"required": [
"orgnr"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"description": "Basic company record",
"properties": {
"activity_description": {
"description": "Registered activity description (verksamhetsbeskrivning), native language",
"type": [
"string",
"null"
]
},
"address": {
"anyOf": [
{
"properties": {
"city": {
"type": [
"string",
"null"
]
},
"country": {
"description": "ISO 3166-1 alpha-2",
"type": "string"
},
"postal_code": {
"type": [
"string",
"null"
]
},
"street": {
"type": [
"string",
"null"
]
}
},
"required": [
"street",
"postal_code",
"city",
"country"
],
"type": "object"
},
{
"type": "null"
}
],
"description": "Registered postal address"
},
"country": {
"description": "ISO 3166-1 alpha-2",
"type": "string"
},
"deregistration_date": {
"anyOf": [
{
"description": "Deregistration date (ISO 8601 date, YYYY-MM-DD)",
"type": "string"
},
{
"type": "null"
}
]
},
"identifier": {
"description": "Global identifier, e.g. \"SE:orgnr:5567037485\"",
"type": "string"
},
"industry": {
"items": {
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"native_code": {
"description": "Industry code, e.g. SNI \"62010\"",
"type": "string"
},
"native_system": {
"description": "Code system, e.g. \"SNI2007\"",
"type": "string"
}
},
"required": [
"native_code",
"native_system",
"description"
],
"type": "object"
},
"type": "array"
},
"legal_form": {
"properties": {
"native_code": {
"description": "Register code, e.g. \"AB\"",
"type": "string"
},
"native_name": {
"description": "Register name, e.g. \"Aktiebolag\"",
"type": "string"
},
"type": {
"description": "Coarse cross-country mapping",
"enum": [
"limited_company",
"sole_trader",
"partnership",
"association",
"other"
],
"type": "string"
}
},
"required": [
"native_code",
"native_name",
"type"
],
"type": "object"
},
"names": {
"description": "Registered name first, then trade/former names",
"items": {
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"registered",
"trade",
"former"
],
"type": "string"
}
},
"required": [
"name",