Get City Information by City ID

Last Updated on : 2023-06-20 12:39:04

Get detailed information about a specified city by city ID, including latitude, longitude, country name, and city name.

API address

GET: /v1.0/iot-03/cities/{city_id}

Request parameter

Parameter nameTypeINRequiredDescription
city_idLong trueThe ID of a specified city.

Return parameter

Parameter nameTypeDescription
resultAreaResThe returned result.

Description of result

Parameter nameTypeDescription
city_idStringThe ID of a specified city.
city_nameStringThe name of a specified city.
province_nameStringThe name of a specified province.
lonStringThe longitude.
parent_city_nameStringThe name of the superior city.
country_nameStringThe name of the country.
parent_idStringThe ID of a specified parent node.
latStringThe latitude.

Request example

GET: /v1.0/iot-03/cities/793409524550733824

Return example

{
    "result": {
        "parent_city_name": "Xiangtan City",
        "lon": "112.9080652",
        "province_name": "Hunan Province",
        "city_name": "Xiangtan City",
        "parent_id": "793416838607409***",
        "country_name": "China",
        "lat": "27.8666362",
        "city_id": "793409524550733***"
    },
    "t": 1637834399334,
    "success": true
}

Error code

For more information, see error code.