Cities
Get City
Get City
GET
/
cities
/
{id}
curl --request GET \
--url https://api.geocoders.io/cities/{id} \
--header 'X-Api-Key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"municipality_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"local_identifier": "<string>"
}
Authorizations
Path Parameters
ID of City to get
Response
200 - application/json
Get City response
The response is of type object
.
curl --request GET \
--url https://api.geocoders.io/cities/{id} \
--header 'X-Api-Key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"municipality_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"local_identifier": "<string>"
}