Get Transactions Of Block
GET/api/v1/blocks/:blockNumber/transactions
Free [1 Credits]
Request
Path Parameters
block number
Query Parameters
Possible values: [TxTypeLegacyTransaction
, TxTypeValueTransfer
, TxTypeFeeDelegatedValueTransfer
, TxTypeFeeDelegatedValueTransferWithRatio
, TxTypeValueTransferMemo
, TxTypeFeeDelegatedValueTransferMemo
, TxTypeFeeDelegatedValueTransferMemoWithRatio
, TxTypeAccountUpdate
, TxTypeFeeDelegatedAccountUpdate
, TxTypeFeeDelegatedAccountUpdateWithRatio
, TxTypeSmartContractDeploy
, TxTypeFeeDelegatedSmartContractDeploy
, TxTypeFeeDelegatedSmartContractDeployWithRatio
, TxTypeSmartContractExecution
, TxTypeFeeDelegatedSmartContractExecution
, TxTypeFeeDelegatedSmartContractExecutionWithRatio
, TxTypeCancel
, TxTypeFeeDelegatedCancel
, TxTypeFeeDelegatedCancelWithRatio
, TxTypeChainDataAnchoring
, TxTypeFeeDelegatedChainDataAnchoring
, TxTypeFeeDelegatedChainDataAnchoringWithRatio
, TxTypeEthereumAccessList
, TxTypeEthereumDynamicFee
]
Possible values: >= 1
Results page you want to retrieve (1..N)
Number of records per page, min: 1, Max: 2000
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
Possible values: [Account Update
, Fee Delegated Account Update
, Fee Delegated Account Update With Ratio
, Cancel
, Fee Delegated Cancel
, Fee Delegated Cancel With Ratio
, Smart Contract Deploy
, Fee Delegated Smart Contract Deploy
, Fee Delegated Smart Contract Deploy With Ratio
, Smart Contract Execution
, Fee Delegated Smart Contract Execution
, Fee Delegated Smart Contract Execution With Ratio
, Legacy
, Chain Data Anchoring
, Fee Delegated Chain Data Anchoring
, Fee Delegated Chain Data Anchoring With Ratio
, Value Transfer
, Fee Delegated Value Transfer
, Fee Delegated Value Transfer With Ratio
, Value Transfer Memo
, Fee Delegated Value Transfer Memo
, Fee Delegated Value Transfer Memo With Ratio
, Ethereum Access List
, Ethereum Dynamic Fee
]
status
object
required
Possible values: [Success
, Fail
]
paging
object
required
property
object
{
"results": [
{
"transactionHash": "string",
"transactionIndex": 0,
"blockId": 0,
"datetime": "2025-01-17T12:41:59.737Z",
"from": "string",
"to": "string",
"feePayer": "string",
"transactionType": "Account Update",
"amount": 0,
"transactionFee": 0,
"status": {
"status": "Success",
"failMessage": "string"
},
"methodId": "string",
"signature": "string",
"effectiveGasPrice": 0,
"burntFees": 0
}
],
"paging": {
"totalCount": 0,
"currentPage": 0,
"last": true,
"totalPage": 0
},
"property": {}
}