Skip to main content
POST
/
listData
Getting list of countries in the world
curl --request POST \
  --url https://gateway.7exchange.io/countrydata/1.0.0/listData \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "countryName": "<string>",
    "nationality": "<string>",
    "three_digit_iso_code": "<string>",
    "two_digit_iso_code": "<string>",
    "currency": "<string>",
    "phone_code": "<string>"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

Created

id
integer
required
countryName
string
required
nationality
string
required
three_digit_iso_code
string
required
two_digit_iso_code
string
required
currency
string
required
phone_code
string
required