v1

latestOpenAPI 3.0.22026-07-26123510445.2 KB
Travel Rule

List Regions

Query the list of regions for a given country, used to populate the beneficiary city/region for Travel Rule data. Stablecoin Account API Publisher Disclaimer

get/v1/ramp/wallet_address/regions

Query parameters

countrystring required

Country code (ISO 3166-1 alpha-2, lowercase)

Headers

x-on-behalf-ofstring

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

Response

Successfully retrieved region list (empty array when the country has no regions)

codeinteger required
messagestring required

Example response

{
  "code": 200,
  "message": "Success",
  "data": [
    {
      "regionName": "Singapore"
    }
  ]
}