Skip to main content
Version: 2.2

Get block by height

GEThttps://mainnet-aptos-api.moralis.io/blocks/:block_height

Get block by specific block height.

PATH PARAMS
block_heightnumberrequired
Block height to lookup. Starts at 0
QUERY PARAMS
with_transactionsboolean
If set to true, include all transactions in the block
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = await Moralis.AptosApi.blocks.getBlockByHeight({
"network": "mainnet"
});

console.log(response);
} catch (e) {
console.error(e);
}
Response Example
{
"block_height": "32425224034",
"block_hash": "32425224034",
"block_timestamp": "32425224034",
"first_version": "32425224034",
"last_version": "32425224034",
"transactions": [
{
"hash": "0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1",
"sender": "0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1",
"sequence_number": "32425224034",
"max_gas_amount": "32425224034",
"gas_unit_price": "32425224034",
"expiration_timestamp_secs": "32425224034",
"payload": {
"type": "",
"function": "",
"type_arguments": [
""
],
"arguments": [
""
]
},
"signature": {
"type": "",
"signature": "",
"public_key": ""
}
}
]
}