Fetch Blocks Overview
These APIs are useful for fetching list of blocks by hash or by timestamp.
Get Blocks API
- js
- react
- reactnative
// pushChain.block.get(reference, {options?})
const block = await pushChain.block.get('36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee');
// pushChain.block.get(reference, {options?})
const block = await pushChain.block.get('36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee');
// pushChain.block.get(reference, {options?})
const block = await pushChain.block.get('36939148bee59c6e1a9d4e6e6fb4e72d407f8667324714c206e64e1485f0f5ee');
Get Blocks parameters
Param | Type | Remarks | Default |
---|---|---|---|
reference | string , '*' | Specifies the query target: '*' for all blocks or a block hash. | * |
options.raw | boolean | If true , returns the raw BlockResponse . If false , returns a SimplifiedBlockResponse . For most cases use default raw = false . | false |
options.startTime | number (timestamp) | Fetches blocks starting from this timestamp. | Current timestamp |
options.order | Order ('ASC' or 'DESC' ) | Determines the sort order of blocks ('ASC' for ascending, 'DESC' for descending). | 'DESC' |
options.page | number | Specifies the page number for paginated results. | 1 |
options.limit | number | Sets the maximum number of transactions to fetch per page. | 30 |
Expected response
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,
});