# Estonian Company Data Lookup

> Estonian Company Data Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Look up official Estonian company information from the e-Business Register by registry code or company name.

## Facts

- Endpoint: GET https://api.strale.io/x402/estonian-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-10f6b86b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8hE1cj_uM-nw5KOlzrvib

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 api-strale-io-10f6b86b
```

Example prompt: Can you look up the Estonian company with registry code 10667868 and tell me its official name, address, and current status?

## When to prefer this

Use this endpoint when you need to verify or enrich data about an Estonian-registered company, validate a registry code, or retrieve official company details from the Estonian e-Business Register. Choose this over generic web search when you need structured, authoritative company data.

## Known failure modes

- Invalid or non-existent registry code returns no results or error
- Fuzzy name match may return multiple or incorrect companies if name is ambiguous
- Registry code must be exactly 8 digits; malformed input returns validation error
- Service unavailable if upstream e-Business Register is down

## How this service works

Look up Estonian company data from the e-Business Register. Accepts registry code (8 digits) or fuzzy company name. SQS: 59/100.

## Output

Returns structured data about an Estonian company including company name, registry code, legal form, registered address, status, and other registration details sourced from the Estonian e-Business Register.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "anyOf": [
      {
       "required": [
        "registry_code"
       ]
      },
      {
       "required": [
        "company_name"
       ]
      },
      {
       "required": [
        "name"
       ]
      },
      {
       "required": [
        "query"
       ]
      },
      {
       "required": [
        "task"
       ]
      }
     ],
     "required": [],
     "properties": {
      "name": {
       "type": "string",
       "description": "Alias for company_name"
      },
      "task": {
       "type": "string",
       "description": "Free-text alias — registry code or company name"
      },
      "query": {
       "type": "string",
       "description": "Free-text alias — registry code or company name"
      },
      "company_name": {
       "type": "string",
       "description": "Company name. Resolved against the Business Register and accepted only on a confident name match — an ambiguous name is refused rather than resolved to the wrong legal entity."
      },
      "registry_code": {
       "type": "string",
       "description": "Estonian registry code, 8 digits (e.g. 10238429)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-10f6b86b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
