Skip to main content

Get Region List (USER_DATA)

API Description

Query the active region/city list for a given country. Currently, only supports AU entity.

HTTP Request

GET /sapi/v1/localentity/region/list

Request Weight(IP)

1

Request Parameters

NameTypeMandatoryDescription
countryCodeSTRINGYESISO 2-digit country code (from Country List API).
timestampLONGYES

Response Example

{
"countryCode": "au",
"regions": [
{
"regionName": "New South Wales",
"blockType": "supported",
"depositAllowed": true,
"withdrawalAllowed": true
}
],
"lastUpdated": 1716300000000
}

Response Fields

NameTypeDescription
countryCodeSTRINGEchoed country code (lowercase).
regionsARRAYList of active regions for the given country.
regions[].regionNameSTRINGRegion/city display name (use this value in questionnaire answers).
regions[].blockTypeSTRINGsupported, limited, or blocked.
regions[].depositAllowedBOOLEANWhether deposit is allowed for this region.
regions[].withdrawalAllowedBOOLEANWhether withdrawal is allowed for this region.
lastUpdatedLONGLast data update timestamp (epoch milliseconds); 0 if empty.