https://in.bisnode.ee/rest/searchCompany

Search company by business name or previous business names.

Request parameters

You have to perform POST request with JSON-encoded parameters:

  • token - access token (required)
  • country - country (optional, default 'EST') can be EST, LTU, LVA.
  • name - part of name or registry code, or one of old company names (required)

Example:

{
	"token": "0c725874e737c8195de547f67692d8b976726561",
	"name": "tallink",
	"country": "EST"
}

Response

Result is array of elements with parameters county, registration_number, business_name and main_address.

Example:

[
	{
		"country": "EST",
		"registration_number": "80405811",
		"business_name": "TALLINK - CITY SPORDIKLUBI MT\u00dc",
		"main_address": "Punane tn 76, 13619, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "10710010",
		"business_name": "TALLINK AS",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "10179520",
		"business_name": "TALLINK DUTY FREE AS",
		"main_address": "Sadama tn 5 \/\/ 7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "11425524",
		"business_name": "TALLINK TAKSO AS",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "11240411",
		"business_name": "TALLINK BALTIC AS",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "10428928",
		"business_name": "TALLINK TRAVEL CLUB O\u00dc",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "11253879",
		"business_name": "TALLINK SCANDINAVIAN AS",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "10238429",
		"business_name": "TALLINK GRUPP AS",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "80391635",
		"business_name": "TALLINKI SPORDIKLUBI MT\u00dc",
		"main_address": "Sadama tn 5, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "80320776",
		"business_name": "SEB TALLINK TENNIS TEAM MT\u00dc",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	},
	{
		"country": "EST",
		"registration_number": "10235684",
		"business_name": "VARA HTG O\u00dc",
		"main_address": "Sadama 5\/7, 10111, Tallinn, Harju maakond, Eesti Vabariik"
	}
]

Errors

  • Token is wrong - you trying to access SOAP service with wrong or expired access token.
  • This request is not allowed for you - the request you trying to perform is not allowed for you. This may be a problem in our system, please contact support.
  • Country code is wrong - country code is wrong. Must be EST LTU or LVA

Example:

{
	"error": "error",
	"code": 0,
	"message": "This request is not allowed for you"
}

See also