Information on the names of organizations and individual entrepreneurs
The service provides an opportunity to obtain up-to-date data on the names of legal entities and individual entrepreneurs registered in the Unified State Register (USR).
To use the service, contact the number 0445851196 or the address support@ubki.ua
Http Method | POST |
---|---|
Headers | Content-Type: application/json; Authorization: sessid (obtained from the authorization API) |
Request URL | https://secure.ubki.ua/tools/entitysearch (to search by legal entities)https://secure.ubki.ua/tools/entrepreneursearch (to search for Individuals of entrepreneurs) |
Request JSON( ** parameters are passed optionally) { "taxNumber": "string", "**companyName": "string" } |
Description of the request parameters
Field | Description |
---|---|
taxNumber | USREOU/RNUKPN |
companyName | Name of the organization-initiator of the request (provided by UBKI) |
Response JSON (to search by legal entities):[ { "taxNumber": "string", "name": "string", "directorName": "string", "address": "string", "state": int, "stateName": "string", "emplCount": int } ] |
Description of response parameters:
Field | Description |
---|---|
taxNumber | USREOU |
name | Name of the legal entity |
directorName | Name of the manager |
address | Address |
state | Status code: 0 - closed, 1 - open |
stateName | Status (text) |
emplCount | Number of employees |
Response JSON (to search for Individuals of entrepreneurs):[ { "taxNumber": "string", "idNais": "string", "name": "string", "address": "string", "kvedCode": "string" "kvedName": "string", "state": int, "stateName": "string" } ] |
Опис параметрів відповіді
Field | Description |
---|---|
taxNumber | RNUKPN |
idNais | NAIS ID |
name | Full name |
address | Address |
kvedCode | KVED code |
kvedName | Name of KVED |
state | Status code: 0 - closed, 1 - open |
stateName | Status (text) |
Example (to search by legal entities) |
---|
Request JSON | {
"taxNumber": "33546706",
"companyName": "bankname"
} |
Response JSON | [
{
"taxNumber": "33546706",
"name": "ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ 'УКРАЇНСЬКЕ БЮРО КРЕДИТНИХ ІСТОРІЙ'",
"directorName": "ПШЕНИЧНИЙ БОГДАН ОЛЕГОВИЧ",
"address": "УКРАЇНА, 01001, МІСТО КИЇВ, ВУЛИЦЯ ГРУШЕВСЬКОГО, БУДИНОК 1-Д",
"state": 1,
"stateName": "зареєстровано",
"emplCount": 32
}
] |
Example (to search for Individuals of entrepreneurs) |
---|
Request XML | {
"taxNumber": "3321316201",
"companyName": "bankname"
} |
Response XML |