# x402-gateway Swedish Company Basics by Org Number

> x402-gateway Swedish Company Basics by Org Number is a paid API for AI agents from x402-gateway.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns basic company information for a Swedish organisation by its 10-digit organisationsnummer

## Facts

- Endpoint: GET https://x402-gateway.ai/api/v1/se/company/:orgnr
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-gateway-swedish-company-basics-by-org-number-e2299370
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4AmAxo3oyRXmWYXCTNlMW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-gateway-swedish-company-basics-by-org-number-e2299370
```

Example prompt: Can you pull up the basic company details for Swedish org number 5564689792 — I need the registered name, address, and status?

## When to prefer this

Use this endpoint when you need authoritative, up-to-date Swedish company basics directly from Bolagsverket and you already know the 10-digit organisationsnummer. Prefer this over a name-search endpoint when you have the exact registration number and want structured, reliable data rather than a search result list. It is ideal for compliance checks, CRM enrichment, invoice validation, and onboarding workflows that require official Swedish corporate registry data.

## Known failure modes

- Invalid org number format (not exactly 10 digits) returns a validation error
- Org number not found in Bolagsverket returns a 404 or empty result
- Payment failure via x402 protocol results in 402 Payment Required
- Upstream Bolagsverket API unavailability causes 503 or timeout
- Rate limiting may occur under high request volume

## How this service works

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.

## Output

A JSON object containing CompanyBasics fields sourced from Bolagsverket, including the company's registered name, status, organisational type, address, and registration metadata, plus a raw upstream payload and a source stamp indicating data provenance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "orgnr"
     ],
     "properties": {
      "orgnr": {
       "type": "string",
       "pattern": "^\\d{10}$",
       "description": "Swedish organisationsnummer, 10 digits without hyphen"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "source"
     ],
     "properties": {
      "raw": {
       "description": "Native upstream payload (Bolagsverket värdefulla datamängder). Always present in responses; omitted from the published example."
      },
      "data": {
       "type": "object",
       "required": [
        "identifier",
        "country",
        "names",
        "legal_form",
        "status",
        "registration_date",
        "deregistration_date",
        "address",
        "industry",
        "activity_description"
       ],
       "properties": {
        "names": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "name",
           "type"
          ],
          "properties": {
           "name": {
            "type": "string"
           },
           "type": {
            "enum": [
             "registered",
             "trade",
             "former"
            ],
            "type": "string"
           }
          }
         },
         "description": "Registered name first, then trade/former names"
        },
        "status": {
         "type": "object",
         "required": [
          "active",
          "insolvency",
          "f_tax",
          "vat_registered",
          "employer"
         ],
         "properties": {
          "f_tax": {
           "type": [
            "boolean",
            "null"
           ],
           "description": "F-tax approval; null when the source lacks it"
          },
          "active": {
           "type": "bool
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-gateway-swedish-company-basics-by-org-number-e2299370/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-gateway.ai](https://www.zero.xyz/host/x402-gateway.ai/llms.txt)
