Address search by coordinates

Address search by coordinates #

Method address #

POST /geosearch/address

Functionality #

Allows you to get the exact address using coordinates (latitude and longitude), at a given level and radius.

Request parameters #

ParameterDescriptionTypeExample
latitudelatitudefloat43.494369
longitudelongitudefloat39.898826
countryCodeCountry code, using ISO 3166-1 alpha-2stringRU
addresslevelThe level of the object you are looking for, by default the closest.
Options: region, area, city, settlement, planStructure, street, house.
stringhouse
radiusSearch radius in meters, default 100. Maximum 1000.int10

Sample request data #

{
  "latitude": 43.494369,
  "longitude": 39.898826,
  "countryCode": "RU",
  "addresslevel": "house",
  "radius": 10
}

Response options #

ParameterDescription
originalAn incoming address string that participated in the standardization
addressParsed and standardized address string
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
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

Descriptions of structures are available on the address standardization page.

Sample response data #

{
  "original": "санкт-петербург козлова 30",
  "address": "г Санкт-Петербург, ул Козлова",
  "postcodeIn": "",
  "postcode": "198260",
  "region": {
    "fullName": "г Санкт-Петербург",
    "name": "Санкт-Петербург",
    "type": "г",
    "codes": {
      "fias": "c2deb16a-0330-4f05-821f-1d09c93331e6",
      "ga": "RU0780000000000000000000000",
      "osm": ""
    }
  },
  "area": {
    "fullName": "",
    "name": "",
    "type": "",
    "codes": {
      "fias": "",
      "ga": "",
      "osm": ""
    }
  },
  "city": {
    "fullName": "",
    "name": "",
    "type": "",
    "codes": {
      "fias": "",
      "ga": "",
      "osm": ""
    }
  },
  "cityArea": {
    "fullName": "",
    "name": "",
    "type": "",
    "codes": {
      "fias": "",
      "ga": "",
      "osm": ""
    }
  },
  "settlement": {
    "fullName": "",
    "name": "",
    "type": "",
    "codes": {
      "fias": "",
      "ga": "",
      "osm": ""
    }
  },
  "planStructure": {
    "fullName": "",
    "name": "",
    "type": "",
    "codes": {
      "fias": "",
      "ga": "",
      "osm": ""
    }
  },
  "street": {
    "fullName": "ул Козлова",
    "name": "Козлова",
    "type": "ул",
    "codes": {
      "fias": "bcd993d5-11bb-49ba-957d-7f68ec1b3a70",
      "ga": "RU0780000000000000000000556",
      "osm": ""
    }
  },
  "houseDetails": {
    "fullName": "дом 30",
    "floor": "",
    "house": "30",
    "case": "",
    "build": "",
    "liter": "",
    "lend": "",
    "block": "",
    "pav": "",
    "flat": "",
    "office": "",
    "kab": "",
    "abon": "",
    "plot": "",
    "sek": "",
    "entr": "",
    "room": "",
    "hostel": "",
    "munit": ""
  },
  "coordinates": {
    "latitude": 59.8388,
    "longitude": 30.2184
  },
  "country": {
    "name": "Россия",
    "alpha2": "RU",
    "alpha3": "RUS",
    "numeric": 643
  },
  "valid": true,
  "quality": {
    "unique": 0,
    "actuality": 0,
    "undefined": 0,
    "level": 7,
    "house": 0,
    "geo": 7
  }
}