# Countries
# Get Countries
GET
/countries
# Example Request
curl --location --request GET 'https://yourwebsite.com/api/countries' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {api_key}' \
--header 'Authorization: Bearer {api_key}'
# Example Response
{
"data": {
"id": 44,
"name": "Bahamas",
"full_name": "Commonwealth of the Bahamas",
"capital": "Nassau",
"citizenship": "Bahamian",
"country_code": 44,
"currency": "Bahamian dollar",
"currency_code": "BSD",
"currency_sub_unit": "cent",
"currency_symbol": "$",
"iso_3166_2": "BS",
"iso_3166_3": "BHS",
"region_code": 19,
"sub_region_code": 29,
"eea": false,
"calling_code": 1,
"flag": "http://vanguard.app/flags/BS.png"
},
// ...
}