platform.getHeight - AVAX
Example code for the platform.getHeight JSON-RPC method. Complete guide on how to use platform.getHeight JSON-RPC in GetBlock Web3 documentation.
Returns the current P-Chain block height. P-Chain produces blocks via Snowman consensus and finalizes within sub-second timeframes.
Parameters
None
Request Example
curl --location --request POST 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/ext/bc/P' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "platform.getHeight",
"params": {},
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "platform.getHeight",
"params": {},
"id": "getblock.io"
});
const config = {
method: 'post',
url: 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/ext/bc/P',
headers: {
'Content-Type': 'application/json'
},
data: data
};
axios(config)
.then(response => console.log(JSON.stringify(response.data, null, 2)))
.catch(error => console.log(error));Response Example
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": {
"height": "5193707"
}
}Response Parameters
Field
Type
Description
result.height
string
Current P-Chain block height (decimal string)
Use Cases
Polling P-Chain chain tip in indexers
Health-checking P-Chain RPC connectivity
Cross-referencing P-Chain heights with C-Chain in dashboards
Error Handling
Status Code
Error Message
Cause
404
Not Found
Missing or invalid <ACCESS-TOKEN>
-32602
Invalid params
Request parameters are missing or malformed
429
Too Many Requests
Rate limit exceeded for your plan
SDK Integration
Last updated
Was this helpful?