platform.getHeight

Returns the height of the last accepted block.

This method will use 10 Compute Units.


Reference: Here

Parameters

None

Returns

height - int

// Result
{
  "jsonrpc": "2.0",
  "result": {
    "height": "56"
  },
  "id": 1
}
curl https://mainnet.avalanche.validationcloud.io/v1/<YOUR_API_KEY_HERE>/ext/bc/P \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
    "jsonrpc": "2.0",
    "method": "platform.getHeight",
    "params": {},
    "id": 1
}'

Last updated