# Strale KYC Finland — Finnish Business Registry Lookup

> Strale KYC Finland — Finnish Business Registry Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $1.62/call, status unknown (last checked 2026-09-15).

Look up Finnish company data by business ID (Y-tunnus) for KYC and due diligence purposes, returning verified company information from Finnish business registries.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyc-finland
- Price: $1.62/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-kyc-finland-finnish-business-registry-lookup-21822c7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iV3dEd_ZoIsxGLuAFl-m3

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-kyc-finland-finnish-business-registry-lookup-21822c7d -d '<json body>'
```

Example prompt: Can you run a KYC check on Finnish company with Y-tunnus 1234567-8 and tell me if it's actively registered and what its official name and address are?

## When to prefer this

Choose this endpoint when you need authoritative, registry-sourced verification of a Finnish company's existence and status for KYC, AML, or vendor due diligence workflows. Prefer this over generic web scraping or manual lookups when you need a cryptographic audit trail for compliance purposes. Ideal for automated onboarding pipelines targeting Finnish businesses specifically.

## Known failure modes

- Invalid Y-tunnus format returns a validation error
- Business ID not found in the registry returns a not-found error
- Dissolved or deregistered companies may return limited historical data
- Network or registry downtime may cause timeout errors
- Malformed request body returns a 400 bad request

## 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

Returns verified Finnish company data including company name, registration status (active/dissolved), business type, registered address, industry code (TOL), and a cryptographically hashed audit record for compliance traceability.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "business_id"
     ],
     "properties": {
      "business_id": {
       "type": "string",
       "description": "Finnish business ID (Y-tunnus)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-kyc-finland-finnish-business-registry-lookup-21822c7d/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)
