Search Swedish companies by name
Search Swedish companies by name. Find a Swedish company's organisationsnummer from its name (e.g. /api/v1/se/company/search?name=spotify). Fuzzy trigram search over our own index of 1.9 million Swedish legal entities, rebuilt weekly from Bolagsverket's and SCB's bulk files — Bolagsverket's own API has no name search. Returns org.nr, name, legal form, city and active status per hit. Legal entities only; sole traders excluded for privacy.
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-01
updated
Provider
x402-gateway.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9d305938253c491F7259d437efF064418B3FDFa0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": [
{
"active": true,
"city": "STOCKHOLM",
"identifier": "SE:orgnr:5567037485",
"legal_form": "AB",
"name": "Spotify AB"
},
{
"active": false,
"city": "SUNDSVALL",
"identifier": "SE:orgnr:5569406480",
"legal_form": "AB",
"name": "Spotify Europe AB"
}
],
"source": {
"attribution": "Källa: Bolagsverket och SCB",
"mock": false,
"name": "se-company-index",
"retrieved_at": "2026-08-31T19:53:38Z"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"name": {
"description": "Company name or name fragment (min 2 characters)",
"pattern": "^.{2,100}$",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"description": "Best matches first",
"items": {
"description": "Name-search hit; look the identifier up for the full record",
"properties": {
"active": {
"type": "boolean"
},
"city": {
"type": [
"string",
"null"
]
},
"identifier": {
"description": "Global identifier, e.g. \"SE:orgnr:5567037485\"",
"type": "string"
},
"legal_form": {
"description": "Register code, e.g. \"AB\"",
"type": "string"
},
"name": {
"description": "Registered name",
"type": "string"
}
},
"required": [
"identifier",
"name",
"legal_form",
"city",
"active"
],
"type": "object"
},
"type": "array"
},
"raw": {
"description": "Always null for search. Always present in responses; omitted from the published example."
},
"source": {
"description": "Where the data came from",
"properties": {
"attribution": {
"description": "Attribution text required by the data licence",
"type": "string"
},
"mock": {
"description": "true when the data is a labelled fixture rather than live register data",
"type": "boolean"
},
"name": {
"description": "Gateway source adapter that produced the data",
"type": "string"
},
"retrieved_at": {
"description": "When the upstream data was fetched (ISO 8601 timestamp)",
"type": "string"
}
},
"required": [
"name",
"attribution",
"retrieved_at",
"mock"
],
"type": "object"
}
},
"required": [
"data",
"source"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-gateway.ai/api/v1/se/company/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-gateway.ai/api/v1/se/company/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-gateway.ai/api/v1/se/company/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8289.json, and this resource appears in /discovery/resources and /discovery/search.