PRH company data API
A robust interface for the Patent and Registration Office (PRH) database. Built for developers who need reliable Finnish company information.
Code Example
curl -X GET "https://api.nordfetch.com/v1/finland/company/2340622-5" \
-H "Authorization: Bearer sk_live_your_key"The Problem: Raw Data Complexity
The PRH Open Data API provides comprehensive data, but it requires significant effort to handle properly. Dealing with localization, deep object nesting, and changing field definitions can slow down development.
The Solution: Single Endpoint
NordFetch simplifies the PRH integrations by removing complexity. You make a single GET request, and we handle the connection, parsing, and error handling.
- Official Company Name
- Business ID (Y-tunnus)
- Registered Details (Address, City, Zip)
- Registration Date
- Company Form (e.g., Osakeyhtiö)
- Current Status (Active, Dissolved)
Example JSON
Below is a sample of the structured data you receive.
{
"id": "2340622-5",
"name": "Supercell Oy",
"status": "active",
"address": {
"street": "Jätkäsaarenlaituri 1",
"zip": "00180",
"city": "HELSINKI",
"country": "FI"
},
"liquidations": [],
"registeredOffices": [
{
"source": "PRH",
"city": "HELSINKI"
}
]
}Get Started
Full documentation available at /api-docs.