Skip to main content
GET
/
meta
/
cities
List Cities
curl --request GET \
  --url https://api.eflow.team/v1/meta/cities \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "cities": [
    {
      "city_id": 123,
      "city_name": "<string>",
      "region_id": 123,
      "region_code": "<string>",
      "country_id": 123,
      "country_code": "<string>"
    }
  ]
}
Retrieve all available cities. Each city includes its parent region and country for hierarchical mapping. Used for geographic targeting in offers, smartlinks, and custom settings.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Response

200 - application/json

OK

cities
object[]