Skip to main content

Fetch Blocks Overview

These APIs are useful for fetching list of blocks by hash or by timestamp.

Get Blocks API

// pushChain.block.get(reference, {options?})
const block = await pushChain.block.get('36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee');

Get Blocks parameters

ParamTypeRemarksDefault
referencestring, '*'Specifies the query target: '*' for all blocks or a block hash.*
options.rawbooleanIf true, returns the raw BlockResponse. If false, returns a SimplifiedBlockResponse. For most cases use default raw = false.false
options.startTimenumber (timestamp)Fetches blocks starting from this timestamp.Current timestamp
options.orderOrder ('ASC' or 'DESC')Determines the sort order of blocks ('ASC' for ascending, 'DESC' for descending).'DESC'
options.pagenumberSpecifies the page number for paginated results.1
options.limitnumberSets the maximum number of transactions to fetch per page.30
Expected response
{
"totalPages": 1,
"lastTs": "1736076322681",
"blocks": [
{
"blockHash": "36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee",
"ts": "1736076322681",
"totalNumberOfTxns": 1,
"transactions": [
{
"txnHash": "177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23",
"ts": "1736076322681",
"blockHash": "36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee",
"category": "CUSTOM:SAMPLE_TX",
"status": "SUCCESS",
"from": "push:devnet:pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6",
"recipients": {
"recipients": [
{
"address": "eip155:1:0x35B84d6848D16415177c64D64504663b998A6ab4"
},
{
"address": "eip155:97:0xD8634C39BBFd4033c0d3289C4515275102423681"
}
]
},
"txnData": "0102030405",
"sig": "6nmaU8lrzsLu62T9yNhCgFlcGrwmx9lcvyoU63g6g4tgldp0RSNQEVZZJlKn0gPt7AuXTDCb+rW6nkS0Gs6/pxw="
}
]
}
]
}

Response properties description:

PropertyTypeDescription
totalPagesnumberThe total number of pages available for the query results.
lastTsstring (timestamp)The timestamp of the last transaction or block in the current response, used for pagination.
blocksarrayA list of blocks included in the response. Each block contains its transactions and metadata.
blocks[].blockHashstringThe unique hash of the block. Identifies the block on the blockchain.
blocks[].tsstring (timestamp)The timestamp indicating when the block was created.
blocks[].totalNumberOfTxnsnumberThe total number of transactions included in the block.
blocks[].transactionsarrayA list of transactions included in the block.
blocks[].transactions[].txnHashstringThe unique hash of the transaction. Identifies the transaction on the blockchain.
blocks[].transactions[].tsstring (timestamp)The timestamp indicating when the transaction occurred.
blocks[].transactions[].blockHashstringThe hash of the block that includes this transaction.
blocks[].transactions[].categorystringThe category of the transaction, often application-specific (e.g., CUSTOM:SAMPLE_TX).
blocks[].transactions[].statusstringThe status of the transaction, such as SUCCESS or FAILED.
blocks[].transactions[].fromstringThe sender's address in a chain-agnostic format (e.g., push:devnet:...).
blocks[].transactions[].recipientsobjectAn object containing the list of recipient addresses for the transaction.
blocks[].transactions[].recipients.recipientsarrayA list of recipient addresses. Each address is specified in a chain-agnostic format.
blocks[].transactions[].txnDatastringThe transaction data in hexadecimal format.
blocks[].transactions[].sigstringThe digital signature of the transaction, verifying its authenticity.

Retrieving by hash

Fetch a Block that has the hash 36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee.

const block = await pushChain.block.get('36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee');

Retrieving by time

const yesterday = Math.floor(Date.now() - 24 * 60 * 60 * 1000);
const blockByTime = await pushChain.block.get('*', {
startTime: yesterday,
});
    1. Devnet Drop S2 is Live!Explore Push Chain Devnet, complete quests, bang out multipliers, and earn airdrops.