Taxonomies Location Municipality
Retrieves the name of a municipality by point, by provincial ID, or by municipal ID.
Example Request
curl -X GET --location 'https://comparables-gr.realitycs.it/taxonomies/location/municipality?municipalityID=2405' \
--header 'Authorization: Bearer <token>'
Response
{
"_metadata": {
"query": {
"municipalityID": 2405
},
"total_count": 1
},
"items": [
{
"municipality": "Marathonas",
"municipalityID": 2405,
"province": "Athens - East",
"region": "Attica"
}
]
}
Request args
(At least one of the following args is mandatory in the input)
| arg | type | Description |
|---|---|---|
| latitude | float | |
| longitude | float | |
| provinceID | int | |
| municipalityID | int |