Skip to main content

Bitcoin Data Source – Streams

Updated on
Jul 20, 2026

Block

The data returned is an array of objects as returned by Blockbook's bb_getBlock. The Block schema models the structure of individual blocks on the Bitcoin blockchain, including fields like hash, height, transactions, and other relevant block data.

Note: Please review the chain specific documentation for the RPC method indicated above for more details about that chain's expected payload shape.

JSON Spec
{
"data": [
{
"bits": "17022b91",
"confirmations": 1,
"difficulty": "129699156960680.9",
"hash": "00000000000000000000ce900f9b7d7f530b791ac60cfb617808a32bf203a407",
"height": 911785,
"merkleRoot": "5dea508e8b4fa157ec0cb422a22a5e65b5843a3f029f79491a3cf312de0ea4aa",
"nonce": "3591125566",
"previousBlockHash": "000000000000000000001344943e4e7bd7906f1176edeeed823d2f4b56c2701a",
"size": 1808508,
"time": 1756211024,
"txCount": 3882,
"txs": [
{
"blockHash": "00000000000000000000ce900f9b7d7f530b791ac60cfb617808a32bf203a407",
"blockHeight": 911785,
"blockTime": 1756211024,
"confirmations": 1,
"fees": "0",
"txid": "54139d6d7e51b5fed15a0e6963dc6ef7f563af5da4e20264fe905ef900fbc168",
"value": "313404924",
"valueIn": "0",
"vin": [
{
"isAddress": false,
"n": 0,
"value": "0"
}
],
"vout": [
{
"addresses": ["1BM1sAcrfV6d4zPKytzziu4McLQDsFC2Qc"],
"isAddress": true,
"n": 0,
"value": "313404924"
}
]
}
]
}
]
}
Share this doc