Skip to main content
GET
/
v1
/
tax
/
locations
List Countries and Regions
curl --request GET \
  --url https://api.cadanapay.com/v1/tax/locations \
  --header 'Authorization: Bearer <token>'
{
  "countries": [
    {
      "name": "Australia",
      "code": "AU",
      "regions": [
        {
          "name": "New South Wales",
          "code": "NSW"
        },
        {
          "name": "Victoria",
          "code": "VIC"
        },
        {
          "name": "Queensland",
          "code": "QLD"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

country
string

Optional country code to filter for a specific country and its regions

Response

Supported countries and regions

countries
object[]