# x402-gateway Swedish Company Name Search

> x402-gateway Swedish Company Name Search is a paid API for AI agents from x402-gateway.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search Swedish companies by name or name fragment using the x402 micropayment-gated API

## Facts

- Endpoint: GET https://x402-gateway.ai/api/v1/se/company/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-gateway-swedish-company-name-search-4a28cc67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AYe9oZFJOjHRD3Bqv1Qa6

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-name-search-4a28cc67
```

Example prompt: Can you search the Swedish company registry for all companies with 'Volvo' in their name and give me the results?

## When to prefer this

Use this endpoint when you need to find Swedish companies by name or name fragment, especially as a first step before fetching detailed company data by org.nr. Prefer this over general web search when you need structured, registry-grade company data from Sweden specifically.

## Known failure modes

- Query string shorter than 2 characters returns a validation error
- No companies matching the name fragment returns an empty array
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting or gateway errors if called too frequently
- Non-Swedish company names return no results as the registry is Sweden-only

## How this service works

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.

## Output

Returns an array of matching company search hits (CompanySearchHit objects), each likely containing company name and organisation number, along with 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "pattern": "^.{2,100}$",
       "description": "Company name or name fragment (min 2 characters)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "source"
     ],
     "properties": {
      "raw": {
       "description": "Always null for search. Always present in responses; omitted from the published example."
      },
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "identifier",
         "name",
         "legal_form",
         "city",
         "active"
        ],
        "properties": {
         "city": {
          "type": [
           "string",
           "null"
          ]
         },
         "name": {
          "type": "string",
          "description": "Registered name"
         },
         "active": {
          "type": "boolean"
         },
         "identifier": {
          "type": "string",
          "description": "Global identifier, e.g. \"SE:orgnr:5567037485\""
         },
         "legal_form": {
          "type": "string",
          "description": "Register code, e.g. \"AB\""
         }
        },
        "description": "Name-search hit; look the identifier up for the full record"
       },
       "description": "Best matches first"
      },
      "source": {
       "type": "object",
       "required": [
        "name",
        "attribution",
        "retrieved_at",
        "mock"
       ],
       "properties": {
        "mock": {
         "type": "boolean",
         "description": "true when the data is a labelled fixture rather than live register data"
        },
        "name": {
         "type": "string",
         "description": "Gateway source adapter that produced the data"
        },
        "attribution": {
         "type": "strin
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-gateway-swedish-company-name-search-4a28cc67/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)
