getchaintips - Litecoin
Example code for the getchaintips JSON-RPC method. Complete guide on how to use getblock JSON-RPC in getchaintips Web3 documentation.
Parameters
Request examples
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": 2750000,
"hash": "blockhash...",
"branchlen": 0,
"status": "active"
}]
}Response parameters
Field
Type
Description
Use case
Error handling
Status Code
Error Message
Cause
Integration notes
Last updated
Was this helpful?