Countries
Countries
Find All
GET
/v1/meta/countries
Countries are useful to narrow down the targeting of your offers, smartlinks, custom settings, etc.
Targeting is done using the country_id
, whereas reporting generally maps the country_code
in the data.
Request Example
cURL
curl --request GET 'https://api.eflow.team/v1/meta/countries' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
"countries": [
{
"country_id": 1,
"country_code": "AD",
"country_name": "Andorra"
},
...,
{
"country_id": 246,
"country_code": "CW",
"country_name": "Curacao"
}
]
}