Skip to content

Get Accounting Tax Token

GET /api/accounting/tax_token/v1
Fills the fields below — runs automatically if your API key is saved.
Get a free API key →
curl
NameInTypeRequiredDescription
date_startquerystringStart of date range in YYYY-MM-DD format (inclusive)
date_endquerystringEnd of date range in YYYY-MM-DD format (inclusive). Must be within 12 calendar months of date_start.
coldkeyquerystringSS58 or hex format

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "string"
}
},
"pagination": {
"type": "object",
"required": [
"current_page",
"per_page",
"total_items",
"total_pages"
],
"properties": {
"current_page": {
"type": "integer",
"format": "int32"
},
"next_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"per_page": {
"type": "integer",
"format": "int32"
},
"prev_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"total_items": {
"type": "integer",
"format": "int32"
},
"total_pages": {
"type": "integer",
"format": "int32"
}
}
}
}
}

All Taostats API requests require an Authorization header containing your API key. See Getting Started.