get_block_stats
Retrieve detailed statistics for any Bitcoin block, including height, hash, transaction count, total BTC value, and block time using direct on-chain data access.
Instructions
Get transaction statistics for a specific Bitcoin block.
Args:
block_height (int): The height of the block
Returns:
A string containing:
- Block height
- Block hash
- Number of transactions
- Total transaction value in BTC
- Block time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_height | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_height": {
"title": "Block Height",
"type": "integer"
}
},
"required": [
"block_height"
],
"title": "get_block_statsArguments",
"type": "object"
}