getCompanyInformation

TEST request - https://in.bisnode.ee/rest_dev/getCompanyInformation

getCompanyInformation

POST https://in.bisnode.ee/rest/getCompanyInformation

Needed Headers: Content-type: application/json This endpoint allows you to get general company information such as: * Company name * Company type * Company type code * Company status * Company status code * Company deletion date (if deleted) * Registration number * Registration date * Registered capital * VAT number * Address * Activity NACE code * Activity description * Country Example Curl request: curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getCompanyInformation' --data '{ "token": "0c725874e737c8195de547f67692d8b976726561", "reg_code": "10117826", "country": "EST", "language": "en" }'

Query Parameters

NameTypeDescription

language

string

2-letter language code. Must be "en", "et" or "ru". Default is "en".

token

string

Your 'access token' (API key).

reg_code

string

Company registration number.

country

string

3-letter country code "EST", "LVA" or "LTU". Default is "EST".

{
    "company_id": "264421",
    "company_name": "BISNODE ESTONIA AS",
    "company_type": "Public limited company",
    "company_type_code": "AS",
    "status": "Active",
    "status_code": "A",
    "deletion_date": null,
    "registration_number": "10117826",
    "registration_date": "1996-11-18",
    "registered_capital": "25560",
    "registered_capital_currency": "EUR",
    "vat_number": "EE100106532",
    "address": "Endla tn 15, 10122, Tallinn, Harju maakond",
    "activity": "63.99",
    "activity_code": "63.99",
    "activity_description": "Other information service activities n.e.c.",
    "country": "EST"
}

Last updated