Address search by ID
#
Method address
#
GET /legacy/getAddressByKladr
Functionality
#
- Allows you to get the exact address using the address register GAR and the value KLADR of the object.
Request parameters
#
Parameter | Description |
---|
kladr | String with the value KLADR of the object |
Sample request data
#
# GET parameters
-X GET
--header 'Accept: application/json'
'https://api.apidq.ru/api/legacy/getAddressByKladr?kladr=78000000000031400'
Response options
#
Parameter | Description |
---|
c_fullname | Found address (up to the street) |
c_index | Found index |
c_RegionName | Region name |
c_RegionType | Region abbreviation |
c_SubRegionName | Subregion name |
c_SubRegionType | Subregion abbreviation |
c_CityName | City name |
c_CityType | City abbreviation |
c_NPName | Locality name |
c_NPType | Locality abbreviation |
c_StreetName | Street name |
c_StreetType | Street abbreviation |
c_level | Address level according to KLADR |
Sample response data
#
[
{
"c_fullname": "г Санкт-Петербург, ул Гороховая",
"c_index": "190031",
"c_RegionName": "Санкт-Петербург",
"c_RegionType": "г",
"c_SubRegionName": "",
"c_SubRegionType": "",
"c_CityName": "",
"c_CityType": "",
"c_NPName": "",
"c_NPType": "",
"c_StreetName": "Гороховая",
"c_StreetType": "ул",
"c_level": "5"
}
]