BTC
POST
GET
Last updated on January 1, 1970
3 min read
Method getblockstats undefined ()
connect with JSON-RPC protocol
getblockstats
Compute per block statistics for a given window. All amounts are insatoshis.It wont work for some heights with pruning.
Parameters
hash_or_height
- string or numeric, required
The block hash or height of the target block
stats
- json array, optional, default=all values
Values to plot (see result below)
Request
curl --location --request POST 'https://btc.getblock.io/mainnet/' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getblockstats",
"params": [1000, null],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": {
"avgfee": 0.0,
"avgfeerate": 0.0,
"avgtxsize": 0,
"blockhash": "00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09",
"feerate_percentiles": [
0.0,
0.0,
0.0,
0.0,
0.0
],
"height": 1000,
"ins": 0,
"maxfee": 0.0,
"maxfeerate": 0.0,
"maxtxsize": 0,
"medianfee": 0.0,
"mediantime": 1232344831,
"mediantxsize": 0,
"minfee": 0.0,
"minfeerate": 0.0,
"mintxsize": 0,
"outs": 1,
"subsidy": 50.0,
"time": 1232346882,
"total_out": 0.0,
"total_size": 0,
"totalfee": 0.0,
"txs": 1,
"utxo_increase": 1,
"utxo_size_inc": 117
}
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }