v50
latestOpenAPI 3.1.0Creative Force Client Subscription Termsraw.githubusercontent.com2026-07-137852387.4 KBTaxes
Retrieve taxes
Retrieves taxes.
get/tax
Query parameters
order'country' | 'country_name' | 'created' | 'name' | 'rate' | 'region' | 'region_name' | 'term' | 'updated'
Column name to order by. An unrecognised value falls back to the default sort order.
dir'asc' | 'desc'
Sort in ascending or descending order.
pagenumber
Specify the page number to return.
per_pagenumber
Limit the number of items returned to between 1 and 100.
If you provide a value outside this range, you will receive a 400 response.
Headers
Accept'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml' required
Defines the response type.
x-api-languagestring[]
Defines the languages included in the response. If non are provided, the account default language is returned.
Value all overrides any other values present.
You can request multiple languages using a comma-separated string of languages.
The selected language must be supported by your account or a 400 error is returned.
Response
Taxes retrieved.
Example response
{
"current_page": 1,
"data": [
{
"country": "GB",
"country_name": "United Kingdom",
"created": "2024-12-09T08:36:57Z",
"name": "VAT",
"rate": 20,
"region": null,
"region_name": null,
"slug": "AbCdEfGh",
"term": "VAT",
"updated": "2025-05-19T12:35:40Z"
},
{
"country": "US",
"country_name": "United States of America",
"created": "2026-04-23T10:41:29Z",
"name": "Alaska",
"rate": 10,
"region": "AK",
"region_name": "Alaska",
"slug": "CdEfGhIj",
"term": "Tax",
"updated": "2026-04-23T10:41:29Z"
}
],
"first_page_url": "https://api.au.cr4ce.com/tax?per_page=10&page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.au.cr4ce.com/tax?per_page=10&page=1",
"next_page_url": "",
"path": "https://api.au.cr4ce.com/tax",
"per_page": 10,
"prev_page_url": "",
"to": 2,
"total": 2
}