Skip to content

Get Coldkey Report

GET /api/accounting/coldkey_report/v1

Requires a Pro subscription

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

200 — Coldkey report retrieved successfully

Section titled “200 — Coldkey report retrieved successfully”

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"coldkey",
"block_number",
"timestamp",
"network"
],
"properties": {
"additional_data": {
"type": "string",
"nullable": true
},
"block_number": {
"type": "integer",
"format": "int32"
},
"coldkey": {
"type": "string"
},
"credit_amount": {
"type": "string",
"nullable": true
},
"daily_income": {
"type": "string",
"nullable": true
},
"daily_income_usd": {
"type": "string",
"nullable": true
},
"date": {
"type": "string",
"format": "date",
"nullable": true
},
"debit_amount": {
"type": "string",
"nullable": true
},
"extrinsic_id": {
"type": "string",
"nullable": true
},
"free_balance": {
"type": "string",
"nullable": true
},
"locked_balance": {
"type": "string",
"nullable": true
},
"network": {
"type": "string"
},
"staked_balance": {
"type": "string",
"nullable": true
},
"tao_price": {
"type": "string",
"nullable": true
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"total_balance": {
"type": "string",
"nullable": true
},
"transaction_type": {
"type": "string",
"nullable": true
}
}
}
},
"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"
}
}
}
}
}
Examples
{
"Result": {
"value": "{}"
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

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