{
  "x402Version": 2,
  "id": 8288,
  "slug": "8288",
  "resource": "https://x402-gateway.ai/api/v1/se/company/:orgnr",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x9d305938253c491F7259d437efF064418B3FDFa0",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "pathParams": {
            "orgnr": "5566059449"
          },
          "queryParams": {},
          "type": "http"
        },
        "output": {
          "example": {
            "data": {
              "activity_description": "Bolaget har till föremål för sin verksamhet att bedriva\nInternetrelaterade tjänster inom digitala medier som musik,\nspel och TV, samt att, direkt eller indirekt, äga och förvalta fast och lös egendom, äga aktier och andelar i dotterbolag och andra bolag samt tillhandahålla administrativa tjänster för\ndessa bolag och därmed förenlig verksamhet.",
              "address": {
                "city": "STOCKHOLM",
                "country": "SE",
                "postal_code": "11153",
                "street": "Regeringsgatan 19"
              },
              "country": "SE",
              "deregistration_date": null,
              "identifier": "SE:orgnr:5567037485",
              "industry": [
                {
                  "description": "Radiosändning och distribution av ljudinspelningar",
                  "native_code": "60100",
                  "native_system": "SNI2007"
                }
              ],
              "legal_form": {
                "native_code": "AB",
                "native_name": "Aktiebolag",
                "type": "limited_company"
              },
              "names": [
                {
                  "name": "Spotify AB",
                  "type": "registered"
                }
              ],
              "registration_date": "2006-05-10",
              "status": {
                "active": true,
                "employer": null,
                "f_tax": null,
                "insolvency": "none",
                "vat_registered": null
              }
            },
            "source": {
              "attribution": "Källa: Bolagsverket och SCB",
              "mock": false,
              "name": "bolagsverket-open",
              "retrieved_at": "2026-08-31T19:42:59Z"
            }
          },
          "type": "json"
        }
      },
      "routeTemplate": "/api/v1/se/company/:orgnr",
      "schema": {
        "$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",
                            "type"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "registration_date": {
                        "anyOf": [
                          {
                            "description": "Registration date (ISO 8601 date, YYYY-MM-DD)",
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "status": {
                        "properties": {
                          "active": {
                            "description": "false once deregistered",
                            "type": "boolean"
                          },
                          "employer": {
                            "description": "Registered employer; null when the source lacks it",
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "f_tax": {
                            "description": "F-tax approval; null when the source lacks it",
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "insolvency": {
                            "enum": [
                              "none",
                              "bankruptcy",
                              "liquidation",
                              "reconstruction"
                            ],
                            "type": "string"
                          },
                          "vat_registered": {
                            "description": "null when the source lacks it",
                            "type": [
                              "boolean",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "active",
                          "insolvency",
                          "f_tax",
                          "vat_registered",
                          "employer"
                        ],
                        "type": "object"
                      }
                    },
                    "required": [
                      "identifier",
                      "country",
                      "names",
                      "legal_form",
                      "status",
                      "registration_date",
                      "deregistration_date",
                      "address",
                      "industry",
                      "activity_description"
                    ],
                    "type": "object"
                  },
                  "raw": {
                    "description": "Native upstream payload (Bolagsverket värdefulla datamängder). 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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402-gateway.ai",
  "lastUpdated": "2026-09-04T13:58:45.69Z",
  "quality": {
    "calls30d": 7,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-04T13:58:45.403Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402-gateway.ai",
    "manifest_name": "x402-gateway.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}