Skip to main content

Get Country List (USER_DATA)

API Description

Query the active country list for travel rule questionnaires. Currently, only supports AU entity.

HTTP Request

GET /sapi/v1/localentity/country/list

Request Weight(IP)

1

Request Parameters

NameTypeMandatoryDescription
timestampLONGYES

Response Example

{
"countries": [
{
"countryCode": "au",
"countryName": "Australia",
"blockType": "supported",
"depositAllowed": true,
"withdrawalAllowed": true,
"hasRegionRestrictions": false
}
],
"lastUpdated": 1716300000000
}

Response Fields

NameTypeDescription
countriesARRAYList of active countries.
countries[].countryCodeSTRINGISO 2-digit country code, lowercase.
countries[].countryNameSTRINGCountry display name.
countries[].blockTypeSTRINGsupported, limited, or blocked.
countries[].depositAllowedBOOLEANWhether deposit is allowed for this country.
countries[].withdrawalAllowedBOOLEANWhether withdrawal is allowed for this country.
countries[].hasRegionRestrictionsBOOLEANWhether this country has region-level restrictions.
lastUpdatedLONGLast data update timestamp (epoch milliseconds); 0 if empty.