getblockstats - Litecoin
Example code for the getblockstats JSON-RPC method. Complete guide on how to use getblockstats JSON-RPC in GetBlock Web3 documentation.
Parameters
Parameter
Type
Description
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "getblockstats",
"params": [2750000],
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "getblockstats",
"params": [2750000],
"id": "getblock.io"
});
const config = {
method: 'post',
url: 'https://go.getblock.io/<ACCESS-TOKEN>/',
headers: {
'Content-Type': 'application/json'
},
data: data
};
axios(config)
.then(response => console.log(JSON.stringify(response.data)))
.catch(error => console.log(error));Response
{
"result": {
"avgfee": 952,
"avgfeerate": 5,
"avgtxsize": 270,
"blockhash": "2b27dd39d0d380791408561a3f11c45b191ce11f88940128702861409c902168",
"feerate_percentiles": [
1,
1,
1,
3,
10
],
"height": 2750000,
"ins": 1439,
"maxfee": 132980,
"maxfeerate": 375,
"maxtxsize": 6863,
"medianfee": 157,
"mediantime": 1725424763,
"mediantxsize": 238,
"minfee": 0,
"minfeerate": 0,
"mintxsize": 97,
"outs": 3210,
"subsidy": 625000000,
"swtotal_size": 283709,
"swtotal_weight": 725729,
"swtxs": 1094,
"time": 1725425585,
"total_out": 11021814089921,
"total_size": 319109,
"total_weight": 867317,
"totalfee": 1122658,
"txs": 1180,
"utxo_increase": 1771,
"utxo_size_inc": 115599
},
"error": null,
"id": "getblock.io"
}Response Parameters
Field
Type
Description
Use Case
Error Handling
Status Code
Error Message
Cause
Integration Notes
Last updated
Was this helpful?