Node API
Get blocks by version
This endpoint allows you to get the transactions in a block and the corresponding block information given a version in the block.
Transactions are limited by max default transactions size. If not all transactions are present, the user will need to query for the rest of the transactions via the get transactions API.
If the block has been pruned, it will return a 410
Path Parameters
versioninteger
Ledger version to lookup block information for.
Format
uint64
Query Parameters
with_transactions?boolean
If set to true, include all transactions in the block
If not provided, no transactions will be retrieved
Response Body
curl -X GET "https://full.mainnet.movementinfra.xyz/v1/blocks/by_version/0?with_transactions=true"
{
"block_height": "32425224034",
"block_hash": "string",
"block_timestamp": "32425224034",
"first_version": "32425224034",
"last_version": "32425224034",
"transactions": [
{
"type": "pending_transaction",
"hash": "string",
"sender": "0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1 ",
"sequence_number": "32425224034",
"max_gas_amount": "32425224034",
"gas_unit_price": "32425224034",
"expiration_timestamp_secs": "32425224034",
"payload": {
"type": "entry_function_payload",
"function": "0x1::aptos_coin::transfer",
"type_arguments": [
"string"
],
"arguments": [
null
]
},
"signature": {
"type": "ed25519_signature",
"public_key": "0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1 ",
"signature": "0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1 "
}
}
]
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}
{
"message": "string",
"error_code": "account_not_found",
"vm_error_code": 0
}