getchaintips - Litecoin

Example code for the getchaintips JSON-RPC method. Complete guide on how to use getblock JSON-RPC in getchaintips Web3 documentation.

Return information about all known tips in the block tree.

Parameters

  • None

Request examples

cURL
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"
}'

Response

response.json
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": [{
        "height": 2750000,
        "hash": "blockhash...",
        "branchlen": 0,
        "status": "active"
    }]
}

Response parameters

Field
Type
Description

height

number

Height of the chain tip.

hash

string

Block hash of the tip.

branchlen

number

Length of branch connecting the tip to main chain.

status

string

Status of the chain (active, valid-fork, valid-headers, headers-only, invalid).

Use case

The getchaintips method is essential for:

  • Chain reorganization detection

  • Fork monitoring

  • Chain analysis

  • Network health monitoring

Error handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration notes

The getchaintips method helps developers build robust applications that interact with the Litecoin blockchain.

Last updated

Was this helpful?