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>'
{
  "data": [
    {
      "name": "Australia",
      "code": "AU",
      "regions": [
        {
          "name": "New South Wales",
          "code": "NSW"
        },
        {
          "name": "Victoria",
          "code": "VIC"
        },
        {
          "name": "Queensland",
          "code": "QLD"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cadanapay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Query Parameters

country
string

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

Response

Supported countries and regions

data
object[]