← Dash overview

Dash · bitcoin

getblockstats

Bitcoin Core RPC: getblockstats

Bitcoin Core / compatible node RPC. Reference: developer.bitcoin.org/reference/rpc/getblockstats.html

cURL

Endpoint: https://dash-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .

Terminal
curl -X POST https://dash-mainnet.eu1.azxa.io/<api-key> \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"1.0","id":1,"method":"getblockstats","params":[]}'

Example request

JSON-RPC
{
  "jsonrpc": "1.0",
  "id": 1,
  "method": "getblockstats",
  "params": []
}

Result

Bitcoin Core JSON-RPC result

Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}
Schema
{
  "type": "unknown"
}