# Finnish Company Registry Search (PRH/YTJ)

> Finnish Company Registry Search (PRH/YTJ) is a paid API for AI agents from 2s.io, paid per call via x402, $0.0036/call, status unknown (last checked 2026-09-14).

Search the official Finnish business registry (PRH/YTJ) by company name to retrieve Business ID, company form, trade-register status, line of business, registration date, and address.

## Facts

- Endpoint: GET https://2s.io/api/business/fi-companies
- Price: $0.0036/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finnish-company-registry-search-prh-ytj-8c827847
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_72t55Dl7YIvfqpmw_j6Bt

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 finnish-company-registry-search-prh-ytj-8c827847
```

Example prompt: Can you look up 'Nokia' in the Finnish business registry and show me its Y-tunnus, company form, trade-register status, and registered address?

## When to prefer this

Use this endpoint when you need authoritative, government-sourced information about Finnish companies, including their Y-tunnus (Business ID), legal form, and registry status. It is the canonical source for Finnish business entity verification, complementing UK Companies House or LEI lookups for Finland-specific due diligence, KYC, or supplier verification tasks.

## Known failure modes

- No results found for the given company name — name may be misspelled or the company may not be registered in Finland
- Name query too short (minimum 2 characters) or too long (maximum 120 characters)
- Limit parameter out of range (must be 1–25)
- Upstream PRH/YTJ data service temporarily unavailable
- Rate limiting or payment failure due to x402 protocol issues

## How this service works

Official Finnish company registry search (PRH/YTJ avoindata, Finnish Patent & Registration Office). Search by company name. Each result: Business ID (Y-tunnus), current name, company form, trade-register status, primary line of business, registration date, and street address — descriptions in English where available. Free, CC BY 4.0. The authoritative FI company lookup — complements business.uk-companies and business.lei.

## Output

A list of matching Finnish companies (up to the requested limit), each with: Business ID (Y-tunnus), current legal name, company form (e.g. Oy, Oyj), trade-register status, primary line of business, registration date, and street address — with descriptions in English where available.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Company name to search."
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finnish-company-registry-search-prh-ytj-8c827847/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
