List of Countries

Getting our list of available countries

To get a list of our serviced countries and their two-symbol ISO codes, use this endpoint:

POST  https://www.giftbasketsoverseas.com/api/v1/countries/get

with no parameters required.

Response example:

{
    "data": [
        {
            "id": "USA",
            "country": "USA",
            "iso_code": "US"
        },
        {
            "id": "UK",
            "country": "UK",
            "iso_code": "GB"
        },
      (...)
}