getblock - Bitcoin
Example code for the getblock JSON-RPC method. Complete guide on how to use getblock JSON-RPC in GetBlock Web3 documentation.
Parameters
Parameter
Type
Required
Description
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "getblock",
"params": ["000000000000000000046b9302e08c16ea186950f42a5498320ddd1bd7ab3428", 1],
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "getblock",
"params": ["000000000000000000046b9302e08c16ea186950f42a5498320ddd1bd7ab3428", 1],
"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
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": {
"hash": "000000000000000000046b9302e08c16ea186950f42a5498320ddd1bd7ab3428",
"confirmations": 15234,
"height": 820000,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "2d66d4b9d56b5f3a3e5ef65323f19b8f68c48e9a4b6d1a7c8e2f3b4c5d6e7f8a",
"time": 1700000000,
"mediantime": 1699999000,
"nonce": 1234567890,
"bits": "170d21b9",
"difficulty": 62460000000000,
"chainwork": "000000000000000000000000000000000000000050a1b2c3d4e5f6789abcdef0",
"nTx": 3500,
"previousblockhash": "000000000000000000047a9e02e08c16ea186950f42a5498320ddd1bd7ab3427",
"nextblockhash": "000000000000000000045b8302e08c16ea186950f42a5498320ddd1bd7ab3429",
"strippedsize": 998000,
"size": 1500000,
"weight": 3993000,
"tx": [
"txid1...",
"txid2...",
"..."
]
}
}Response Parameters
Field
Type
Description
Use Case
Error Handling
Status Code
Error Message
Cause
Integration Notes
Last updated
Was this helpful?