For the complete documentation index, see llms.txt. This page is also available as Markdown.

getblockcount - Litecoin

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

This method returns the height of the most-work, fully validated chain. The genesis block has height 0.

Parameters

  • None

Request

cURL
curl --location --request POST 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "getblockcount",
    "params": [],
    "id": "getblock.io"
}'
axios.js
import axios from 'axios';

const data = JSON.stringify({
    "jsonrpc": "2.0",
    "method": "getblockcount",
    "params": [],
    "id": "getblock.io"
});

const config = {
    method: 'post',
    url: 'https://shared.eu-central-1.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

Response (example)
{
    "result": 3050073,
    "error": null,
    "id": "getblock.io"
}

Response Parameters

Field
Type
Description

result

number

The current block height (number of blocks in chain).

Use Case

The getblockcount method is essential for:

  • Monitoring blockchain height in real-time

  • Calculating transaction confirmations

  • Tracking halving events and milestones

  • Building blockchain dashboards

  • Synchronization status monitoring

  • Estimating time to future blocks

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

The getblockcount method helps developers:

  • Display current block height in UIs

  • Calculate confirmation counts

  • Track halving countdown

  • Monitor chain progress

  • Build height-based triggers

Last updated

Was this helpful?