searchCompany
TEST request - https://in.bisnode.ee/rest_dev/searchCompany
searchCompany
POST
https://in.bisnode.ee/rest/searchCompany
Needed Headers: Content-type: application/json
This endpoint allows you to search for company by 'name'
and 'country'
You will get such information as:
* Business name
* Registration number
* Address
* Country
Example Curl request:
curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/searchCompany' --data '{
"token": "0c725874e737c8195de547f67692d8b976726561",
"name": "Bisnode",
"country": "EST",
"language": "en"
}'
Query Parameters
Name | Type | Description |
---|---|---|
language | string | 2-letter language code. Must be "en", "et" or "ru". Default is "en". |
token | string | Your 'access token' (API key). |
name | string | Company name or registration number. |
country | string | 3-letter country code. Must be "EST", "LTU" or "LVA". Default is "EST". |
Last updated