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
| Name | Type | Mandatory | Description |
|---|---|---|---|
| timestamp | LONG | YES |
Response Example
{
"countries": [
{
"countryCode": "au",
"countryName": "Australia",
"blockType": "supported",
"depositAllowed": true,
"withdrawalAllowed": true,
"hasRegionRestrictions": false
}
],
"lastUpdated": 1716300000000
}
Response Fields
| Name | Type | Description |
|---|---|---|
| countries | ARRAY | List of active countries. |
| countries[].countryCode | STRING | ISO 2-digit country code, lowercase. |
| countries[].countryName | STRING | Country display name. |
| countries[].blockType | STRING | supported, limited, or blocked. |
| countries[].depositAllowed | BOOLEAN | Whether deposit is allowed for this country. |
| countries[].withdrawalAllowed | BOOLEAN | Whether withdrawal is allowed for this country. |
| countries[].hasRegionRestrictions | BOOLEAN | Whether this country has region-level restrictions. |
| lastUpdated | LONG | Last data update timestamp (epoch milliseconds); 0 if empty. |