Get all countries

Using the /countries endpoint, you can retrieve data on over 140 countries where airtime top-ups can be made with the Airtime API

Countries

GET https://topups.reloadly.com/countries

Headers

Name
Type
Description

Authorization*

string

Your access token is required as a bearer token in the request's header

[
  {
    "isoName":"AF",
    "name":"Afghanistan",
    "currencyCode":"AFN",
    "currencyName":"Afghan Afghani",
    "currencySymbol":"؋",
    "flag":"https://s3.amazonaws.com/rld-flags/af.svg",
    "callingCodes":[
      "+93"
    ]
  },
  {
    "isoName":"AS",
    "name":"American Samoa",
    "currencyCode":"USD",
    "currencyName":"US Dollar",
    "currencySymbol":"$",
    "flag":"https://s3.amazonaws.com/rld-flags/as.svg",
    "callingCodes":[
      "+1684"
    ]
  },
  {
    "isoName":"AI",
    "name":"Anguilla",
    "currencyCode":"XCD",
    "currencyName":"East Caribbean Dollar",
    "currencySymbol":"XCD",
    "flag":"https://s3.amazonaws.com/rld-flags/ai.svg",
    "callingCodes":[
      "+1264"
    ]
  },
  {
    "isoName":"AG",
    "name":"Antigua and Barbuda",
    "currencyCode":"XCD",
    "currencyName":"East Caribbean Dollar",
    "currencySymbol":"XCD",
    "flag":"https://s3.amazonaws.com/rld-flags/ag.svg",
    "callingCodes":[
      "+1268"
    ]
  }
]

Request samples

curl --location --request GET 'https://topups.reloadly.com/countries' \
--header 'Accept: application/com.reloadly.topups-v1+json' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN_HERE'

Response parameters

Parameter

Type

Description

isoName

string

This indicates the ISO code of the country

name

string

This indicates the country's name

currencyCode

string

This indicates the code of the country's currency

currencyName

string

This indicates the name of the country's currency

currencySymbol

string

This indicates the symbol of the country's currency

flag

string

This is a link to an SVG image of the country's flag

callingCodes

string

This indicates the country's international dialing code

Last updated

Was this helpful?