Company rest API
The API returns company name, business id, DUNS number, activity information and operational decision-makers with responsibility areas in JSON format, as specified by business id or DUNS.
In order to use the API you must have the valid environment-specific username and password. Before any API requests, you need to obtain an API KEY. You will get a valid API KEY (it's called a ticket) by using the ticket API (Please, read how to use ticket API instructions).
The API KEY must be sent in the request custom header element (named ticket or x-api-key). If the API KEY value is valid then API request will be successful (http status code 200), otherwise it will fail (http status code 401). All API requests must be made over HTTPS.
API request parameters
| Parameter | Description | |
|---|---|---|
| id | Company's business id or duns number | X |
| X = Mandatory | ||
GET https://api-test.bisnode.fi/yritykset/v1/getdecisionmakers?id={id}
| Element | Description |
|---|---|
| name | The company name |
| regNo | The company's business id |
| duns | The company's duns number |
| conditionCode | The company's status code (activity) |
| conditionDescr_En | The status code description in English |
| conditionDescr_Fi | The status code description in Finnish |
| lastName | Decision maker's last name |
| firstName | Decision maker's first name |
| title | Decision maker's title/role |
| Decision maker's email address | |
| phone | Decision maker's phone number |
| dateLastChecked | Date when the information was last checked |
| functionCode | Decision maker's responsibility code |
| functionDescr_En | The responsibility code description in English |
| functionDescr_FI | The responsibility code description in Finnish |
curl 'https://api-test.bisnode.fi/yritykset/v1/getdecisionmakers?id=2014838-7' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
{
"name": "Bisnode Finland Oy",
"regNo": "20148387",
"duns": "539506084",
"condition": {
"conditionCode": "100",
"conditionDescr_En": "Active",
"conditionDescr_Fi": "Aktiivinen"
},
"leader": [
{
"idNo": 3655855,
"lastName": "Meikäläinen",
"firstName": "Tomi",
"title": "Toimitusjohtaja",
"eMail": "[email protected]",
"phone": "044 7882332",
"dateLastChecked": 20161208,
"responsibility": [
{
"functionCode": "1100",
"functionDescr_En": "Top Management, CEO",
"functionDescr_FI": "Ylin johto, CEO"
}
]
},
{
"idNo": 3934478,
"lastName": "Kemppainen",
"firstName": "Arja",
"title": "Markkinointipäällikkö",
"eMail": "[email protected]",
"dateLastChecked": 20151215,
"responsibility": [
{
"functionCode": "1400",
"functionDescr_En": "Marketing",
"functionDescr_FI": "Markkinointi"
}
]
},
{
"idNo": 3934479,
"lastName": "Mykkänen",
"firstName": "Joonas",
"title": "Myyntijohtaja",
"eMail": "[email protected]",
"phone": "040 4440921",
"dateLastChecked": 20151215,
"responsibility": [
{
"functionCode": "1300",
"functionDescr_En": "Sales",
"functionDescr_FI": "Myynti"
}
]
},
{
"idNo": 3934480,
"lastName": "Meikäläinen",
"firstName": "Pasi",
"title": "Teknologiajohtaja",
"eMail": "[email protected]",
"phone": "040 63728323",
"dateLastChecked": 20151215,
"responsibility": [
{
"functionCode": "1600",
"functionDescr_En": "ICT",
"functionDescr_FI": "ICT"
},
{
"functionCode": "1800",
"functionDescr_En": "Production",
"functionDescr_FI": "Tuotanto"
},
{
"functionCode": "2000",
"functionDescr_En": "Research And Development",
"functionDescr_FI": "Tutkimus & Kehitys"
}
]
},
{
"idNo": 4048673,
"lastName": "Makkonen",
"firstName": "Minna",
"eMail": "[email protected]",
"dateLastChecked": 20151215,
"responsibility": [
{
"functionCode": "2300",
"functionDescr_En": "Customer Service",
"functionDescr_FI": "Asiakaspalvelu"
}
]
}
]
}
Please note that data coverage varies between companies. Data coverage depends e.g. on company form. Remember the codes and descriptions API returns all companies REST APIs code values and descriptions - read more.