Address search with accuracy to the house by FIAS ID of the locality

Address search with accuracy to the house by FIAS ID of the locality #

Method address #

POST /idsearch/address/center

Functionality #

Address search with accuracy to the house by fias locality Allows you to get the exact address with accuracy to the house by FIAS ID of the locality.

Request parameters #

ParameterDescriptionTypeExample
queryFIAS ID of the localitystring93adb246-540e-40a2-a0fd-e96ca6796589
countryCodeCountry code, using ISO 3166-1 alpha-2 stringstringRU

Sample request data #

{
  "query": "93adb246-540e-40a2-a0fd-e96ca6796589",
  "countryCode": "RU"
}

Response options #

ParameterDescription
originalAn incoming address string that participated in the standardization
addressParsed and standardized address string
addressFullParsed and standardized address string with house part
postcodeInZIP code found in the input string
postcodePostal code determined from the reference base in the process of standardization
regionRegion, region. See the description of the addressLevel structure
areaDistrict of the region. See the description of the addressLevel structure
municipalMunicipal entity. See the description of the addressLevel structure
cityTown. See the description of the addressLevel structure
cityAreaA district of the city. See the description of the addressLevel structure
settlementLocality. See the description of the addressLevel structure
planStructurePlanning structure (microdistrict). See the description of the addressLevel structure
streetStreet. See the description of the addressLevel structure
houseDetailsHouse part of the address. See the description of the structure houseDetails
coordinatesGeographical coordinates. See the description of the structure coordinates
countryCountry. See the description of the country structure
validSign of correctness of the address
qualityAddress quality code. See Address Quality Code
timezoneTime zone

Descriptions of structures are available on the address standardization page.

Sample response data #

{
    "original": "93adb246-540e-40a2-a0fd-e96ca6796589",
    "addressFull": "Архангельская обл, Котласский р-н, г Котлас, ул К.Маркса, дом 7",
    "address": "Архангельская обл, Котласский р-н, г Котлас, ул К.Маркса",
    "postcodeIn": "",
    "postcode": "165300",
    "region": {
        "fullName": "Архангельская обл",
        "name": "Архангельская",
        "type": "обл",
        "codes": {
            "fias": "294277aa-e25d-428c-95ad-46719c4ddb44",
            "ga": "RU0290000000000000000000000",
            "osm": "",
            "gar": "442495",
            "kladr": "2900000000000"
        }
    },
    "area": {
        "fullName": "Котласский р-н",
        "name": "Котласский",
        "type": "р-н",
        "codes": {
            "fias": "cfa3b599-159c-49f9-992e-3aa64c675ad6",
            "ga": "RU0290080000000000000000000",
            "osm": "",
            "gar": "447206",
            "kladr": "2900800000000"
        }
    },
    "municipal": null,
    "city": {
        "fullName": "г Котлас",
        "name": "Котлас",
        "type": "г",
        "codes": {
            "fias": "93adb246-540e-40a2-a0fd-e96ca6796589",
            "ga": "RU0290080001000000000000000",
            "osm": "",
            "gar": "447238",
            "kladr": "2900800100000"
        }
    },
    "cityArea": {
        "fullName": "",
        "name": "",
        "type": "",
        "codes": {
            "fias": "",
            "ga": "",
            "osm": "",
            "gar": "",
            "kladr": ""
        }
    },
    "settlement": {
        "fullName": "",
        "name": "",
        "type": "",
        "codes": {
            "fias": "",
            "ga": "",
            "osm": "",
            "gar": "",
            "kladr": ""
        }
    },
    "planStructure": {
        "fullName": "",
        "name": "",
        "type": "",
        "codes": {
            "fias": "",
            "ga": "",
            "osm": "",
            "gar": "",
            "kladr": ""
        }
    },
    "street": {
        "fullName": "ул К.Маркса",
        "name": "К.Маркса",
        "type": "ул",
        "codes": {
            "fias": "f2f4563a-d616-49c7-86e7-dfcd1b9568d8",
            "ga": "RU0290080001000000000000017",
            "osm": "",
            "gar": "449386",
            "kladr": "29008001000001700"
        }
    },
    "houseDetails": {
        "fullName": "дом 7",
        "house": "7",
        "case": "",
        "build": "",
        "liter": "",
        "lend": "",
        "constr": "",
        "stead": "",
        "flat": "",
        "office": "",
        "room": "",
        "kab": "",
        "place": "",
        "entr": "",
        "floor": "",
        "block": "",
        "pav": "",
        "sek": "",
        "abon": "",
        "munit": "",
        "codes": {
            "fias": "e0b7f122-9723-427f-a673-7b2acfe67455",
            "ga": "",
            "osm": "",
            "gar": "74228981",
            "kladr": ""
        }
    },
    "coordinates": {
        "latitude": 61.253212,
        "longitude": 46.633204
    },
    "country": {
        "name": "Россия",
        "alpha2": "RU",
        "alpha3": "RUS",
        "numeric": 643
    },
    "valid": true,
    "quality": {
        "unique": 0,
        "actuality": 0,
        "undefined": 0,
        "level": 8,
        "house": 3,
        "geo": 8
    },
    "timezone": "UTC+3"
}