githubEdit

getblockcount - Bitcoin

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 --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "getblockcount",
    "params": [],
    "id": "getblock.io"
}'

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": 820000
}

Response Parameters

Field
Type
Description

result

number

The current block height (number of blocks in the 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?