getblockcount

Gets the block count of the blockchain.

Parameters

None

Result

The block count of the blockchain.

Example

Request

curl <your-endpoint> \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{"jsonrpc": "2.0", "method": "getblockcount", "params":[],"id": 1}'

Return

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": 1310135
}
Language
Click Try It! to start a request and see the response here!