Skip to main content
POST
/
api
/
v1
/
registrations
/
v2
/
content
/
available-jurisdictions
curl --request POST \
  --url 'https://transaction-tax.api.in.commenda.io/api/v1/registrations/v2/content/available-jurisdictions' \
  --header 'Authorization: Bearer <your_token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "filters": {
      "countries": ["US"],
      "types": ["STATE_OR_PROVINCE"]
    },
    "limit": 50
  }'
{
  "data": {
    "jurisdictions": [
      {
        "jurisdiction_id": "JUR_US_STATE_CA",
        "jurisdiction_name": "California",
        "jurisdiction_type": "STATE_OR_PROVINCE",
        "country": "US",
        "state": "CA"
      },
      {
        "jurisdiction_id": "JUR_US_STATE_TX",
        "jurisdiction_name": "Texas",
        "jurisdiction_type": "STATE_OR_PROVINCE",
        "country": "US",
        "state": "TX"
      }
    ],
    "total": 45,
    "cursor": "SlVSX1VTX1NUQVRFX05Z"
  }
}
Search for tax jurisdictions where V2 registrations are available. Returns jurisdictions that match your filters, with cursor-based pagination for large result sets.

Request body

filters
object
Filter criteria for jurisdictions.
Free-text search across jurisdiction names.Example: "California" or "Germany"
cursor
string
Pagination cursor from a previous response. Leave empty for the first page.
limit
integer
default:"10"
Maximum number of results to return (1–100).
curl --request POST \
  --url 'https://transaction-tax.api.in.commenda.io/api/v1/registrations/v2/content/available-jurisdictions' \
  --header 'Authorization: Bearer <your_token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "filters": {
      "countries": ["US"],
      "types": ["STATE_OR_PROVINCE"]
    },
    "limit": 50
  }'
{
  "data": {
    "jurisdictions": [
      {
        "jurisdiction_id": "JUR_US_STATE_CA",
        "jurisdiction_name": "California",
        "jurisdiction_type": "STATE_OR_PROVINCE",
        "country": "US",
        "state": "CA"
      },
      {
        "jurisdiction_id": "JUR_US_STATE_TX",
        "jurisdiction_name": "Texas",
        "jurisdiction_type": "STATE_OR_PROVINCE",
        "country": "US",
        "state": "TX"
      }
    ],
    "total": 45,
    "cursor": "SlVSX1VTX1NUQVRFX05Z"
  }
}