GET
/
users
/
country-codes
curl --request GET \
  --url https://api.altostrat.io/users/country-codes \
  --header 'Authorization: Bearer <token>'
{
  "locale": {
    "countryCode": "AU"
  },
  "currency": {
    "iso3": "AUD",
    "symbol": "$"
  },
  "data": [
    {
      "iso2": "AU",
      "country": "Australia",
      "flag": "🇦🇺"
    }
  ]
}

Authorizations

Authorization
string
header
required

Standard OAuth2 flow for user authentication. Use Authorization Code Grant or Implicit Grant. JWT Bearer tokens obtained are used for subsequent requests.

Response

200 - application/json
Country and currency information.
locale
object

Information derived from the user's IP address.

currency
object
data
object[]