# Strale Finnish Company Data

> Strale Finnish 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 Finnish company registration data from the PRH (Finnish Patent and Registration Office) by business ID, registration number, or company name.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/finnish-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-finnish-company-data-64b5912b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zjVuNLfnHR2JT8HN9Kcr2

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-finnish-company-data-64b5912b
```

Example prompt: Can you pull up the official company registration details for Kone Oyj from the Finnish business registry? Their business ID should be something like 0112038-9.

## When to prefer this

Choose this endpoint when you need authoritative, officially sourced Finnish company registration data from the PRH. Prefer it over generic web search when you need structured, verifiable corporate data with a cryptographic audit trail. Ideal for due diligence, supplier verification, CRM enrichment, or compliance workflows involving Finnish entities. Use the business ID parameter when available for the most precise lookup; fall back to company name search for fuzzy resolution.

## Known failure modes

- Company not found for given business ID or name — returns empty or error response
- Ambiguous company name resolves to wrong entity — scored PRH search may return best-guess match
- Invalid business ID format — malformed input rejected
- Rate limiting or payment failure for x402 micropayment — call does not execute
- PRH data source temporarily unavailable — upstream dependency failure

## 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 official Finnish company registration data sourced from the PRH, including business ID, legal company name, registration status, and related corporate details, along with a cryptographic audit record for provenance 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": [
        "business_id"
       ]
      },
      {
       "required": [
        "org_number"
       ]
      },
      {
       "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 — business ID or company name"
      },
      "query": {
       "type": "string",
       "description": "Free-text alias — business ID or company name"
      },
      "org_number": {
       "type": "string",
       "description": "Alias for business_id"
      },
      "business_id": {
       "type": "string",
       "description": "Finnish Business ID (e.g. 0112038-9)"
      },
      "company_name": {
       "type": "string",
       "description": "Finnish company name (resolved via scored PRH search)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-finnish-company-data-64b5912b/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)
