Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »


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

  body:

{

   "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):

 body:

[

   {

       "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):

  body:

[

   {

       "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

[
   {
       "taxNumber": "3321316201",
       "idNais": "12298900'",
       "name": "КОЛЕМКО ЮЛІЯ ВЯЧЕСЛАВІВНА",
       "address": "УКРАЇНА, 50027, ДНІПРОПЕТРОВСЬКА ОБЛ., МІСТО КРИВИЙ РІГ, ВУЛИЦЯ ГЕРОЇВ АТО, БУДИНОК 10, ПРИМІЩЕННЯ 2",
       "kvedCode": "62,01",
       "kvedName": "Комп'ютерне програмування",
       "state": 1,
       "stateName": "зареєстровано",
   }
]

  • No labels