Get Accounting Tax Token
Endpoint
Section titled “Endpoint”GET /api/accounting/tax_token/v1Try it
Section titled “Try it”Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
date_start | query | string | ✅ | Start of date range in YYYY-MM-DD format (inclusive) |
date_end | query | string | ✅ | End of date range in YYYY-MM-DD format (inclusive). Must be within 12 calendar months of date_start. |
coldkey | query | string | ✅ | SS58 or hex format |
Responses
Section titled “Responses”200 — Tokens retrieved successfully
Section titled “200 — Tokens retrieved successfully”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" } } } }}400 — Bad request
Section titled “400 — Bad request”404 — Tokens not found
Section titled “404 — Tokens not found”500 — Internal server error
Section titled “500 — Internal server error”Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.