List all tax rules

GET https://api.tamio.com/v2/taxes/list

Returns a paginated list of tax rules. Results can be sorted by rate, country, or label.

Query Parameters

page integer*

Page number for pagination.

per_page integer*

Number of tax rules per page.

order string

Sort direction.

ascdesc
sort_by string

Field to sort by.

ratecountrylabel

Responses

200 Paginated list of tax rules

Paginated list of tax rules

status integer
total_results integer
taxes array of Tax
400 Validation or business-logic error
401 Missing or invalid API key
/taxes/list
1const response = await fetch("https://api.tamio.com/v2/taxes/list", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "total_results": 8,
  "taxes": []
}