API endpoints
- https://api.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery - production environment
- https://test.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery - test environment
API request parameters
Parameter | Description | |
---|---|---|
name | Free text search | X |
X = Mandatory |
API response
Information | Description |
---|---|
rekisterinumero | Association register number |
kotipaikka | Domicile municipality |
rekisteröintipaiva | Registry date |
nimi | Official name of the association |
saannot_on | Rules Yes/No |
More information | mnimi (name), kieli (language), tila (status), alkupvm (start date), loppupvm (end date (if exists)), vrekno (registry number), vkotipaikka (domicile) |
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.bisnode.fi/yritykset/v1/AssocisationRegisterNameQuery?nimi=porvoon uimarit' -H 'ticket: 1234567890ABC'
Request succeeded with given parameters. API responded in JSON format.
{ "status": "OK", "loytyi": 1, "yhdistys": [ { "rekisterinumero": "28.807", "kotipaikka": "Borgå", "rekisterointipaiva": "09.09.1937", "viim_rekpaiva": "01.02.2012", "nimi": "Borgå Simmare - Porvoon Uimarit r.f.", "saannot_on": "0", "nimet": [ { "mnimi": "Borgå Simmare - Porvoon Uimarit r.f.", "kieli": "SE", "tila": "R", "alkupvm": "09.09.1937", "loppupvm": "", "vreknro": "", "vkotipaikka": "Borgå" } ] } ], "Error": null }