getchaintips - Bitcoin
Example code for the getchaintips JSON-RPC method. Complete guide on how to use getchaintips JSON-RPC in GetBlock Web3 documentation.
Parameters
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "getchaintips",
"params": [],
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "getchaintips",
"params": [],
"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": [
{
"height": 820000,
"hash": "000000000000000000046b9302e08c16ea186950f42a5498320ddd1bd7ab3428",
"branchlen": 0,
"status": "active"
},
{
"height": 819998,
"hash": "000000000000000000047c9402e08c16ea186950f42a5498320ddd1bd7ab3425",
"branchlen": 1,
"status": "valid-fork"
},
{
"height": 819990,
"hash": "000000000000000000048d9502e08c16ea186950f42a5498320ddd1bd7ab3420",
"branchlen": 3,
"status": "headers-only"
}
]
}Response Parameters
Field
Type
Description
Status
Description
Use Case
Error Handling
Status Code
Error Message
Cause
Integration With Web3
Last updated
Was this helpful?