查询国家信息

Endpoint

Sandbox

POST https://preapi.futurepay-develop.com//api/v1/reference/country

Production

POST https://api.futurepay.global/api/v1/reference/country

Request Parameters

None

Request Example

{}

Response

FieldTypeDescription
countryCodestringISO 3166-1 Alpha-2 country code
countryNamestringCountry name

Response Example

{
  "code": "0",
  "msg": "success",
  "serverTime": 1738836526355,
  "success": true,
  "data": [
    {
      "countryCode": "US",
      "countryName": "United States"
    },
    {
      "countryCode": "GB",
      "countryName": "United Kingdom"
    },
    {
      "countryCode": "SG",
      "countryName": "Singapore"
    }
  ]
}


Did this page help you?