API endpoints
- https://api.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery - production environment
- https://api-test.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery - test environment
API request parameters
Parameter | Description | |
---|---|---|
name | Free text search | X |
X = Mandatory |
API response
Information | Description |
---|---|
businessId | Business ID number |
registryDate | Registry date |
name | Official name of the association |
Note! Information might be different depending on registered information and current situation of the foundation. The most general available info is listed here. |
API request and response example
curl 'https://api-test.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery?name=porvoon%20uimarit' -H 'ticket: 1234567890ABC'
Request succeeded with given parameters. API responded in JSON format.
{ "numberOfAssociations": 1, "associations": [ { "businessId": "0130364-4", "registryDate": "09.09.1937", "name": "Borgå Simmare - Porvoon Uimarit r.f.", "names": [ { "name": "Borgå Simmare - Porvoon Uimarit r.f.", "language": "SE", "status": "R" } ] } ] }