GET
/
product
/
countries
List countries
curl --request GET \
  --url https://playground.runa.io/v2/product/countries \
  --header 'X-Api-Key: <api-key>'
{
  "countries": [
    "AT",
    "AU",
    "BE",
    "CA",
    "CH",
    "CZ",
    "DE",
    "DK",
    "ES",
    "FI",
    "FR",
    "GB",
    "GR",
    "HU",
    "IE",
    "IT",
    "JP",
    "LU",
    "MX",
    "NL",
    "NO",
    "NZ",
    "PL",
    "PT",
    "RO",
    "SE",
    "SG",
    "SI",
    "US",
    "ZA"
  ]
}

Authorizations

X-Api-Key
string
header
required

Your API key. See the API key page on details of how to generate and store your keys.

Headers

X-Api-Version
string

The dated version of the API, if not specified a default is used. See API versioning for more information.

Response

A list of countries where products are available

countries
string[]

ISO 3166 ALPHA-2 country code

Example:
[
"AT",
"AU",
"BE",
"CA",
"CH",
"CZ",
"DE",
"DK",
"ES",
"FI",
"FR",
"GB",
"GR",
"HU",
"IE",
"IT",
"JP",
"LU",
"MX",
"NL",
"NO",
"NZ",
"PL",
"PT",
"RO",
"SE",
"SG",
"SI",
"US",
"ZA"
]