# Strale Estonian Company Data

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

Look up Estonian company registry data by registry code or company name, returning structured business information with a cryptographic audit record.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/estonian-company-data
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-estonian-company-data-e295ee52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2l56kjhnafXmifyQ47KBw

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 strale-estonian-company-data-e295ee52
```

Example prompt: Can you pull the official registry details for Estonian company Bolt Technology OÜ — I need the registration number, legal status, and any other data from the Estonian Business Register.

## When to prefer this

Choose this endpoint when you need authoritative, structured data on Estonian legal entities directly from the Business Register, especially for KYB (Know Your Business) workflows, supplier verification, or compliance due diligence involving Estonian companies. Prefer this over generic web search when you need structured data with an audit trail and cryptographic chain hashing for traceability. Ideal for automated agent workflows requiring verified business identity data from Estonia specifically.

## Known failure modes

- Ambiguous company name refused rather than resolved to a wrong entity — returns an error if name match is not confident
- Registry code not found — returns 404 or empty result if the 8-digit code does not exist in the register
- Malformed registry code — must be exactly 8 digits; invalid format returns a validation error
- No query parameter provided — request rejected as missing required identifier
- Network or upstream registry unavailability — may return a 5xx error if the Estonian Business Register is unreachable

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Structured JSON containing Estonian company registration data (legal name, registry code, legal form, status, address, registration date, and other available fields from the Business Register), plus a cryptographic audit record with chain hashing for traceability and trust verification.

## 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/strale-estonian-company-data-e295ee52/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)
