Transactions
Get wallet transactions summary
Balances
Transactions
Events
Restaked ETH
Transactions
Get wallet transactions summary
Get the earliest and latest transactions, and the transaction cound involving a wallet.
GET
/
{chainName}
/
v1
/
address
/
{walletAddress}
/
transactions
/
summary
curl --request GET \
--url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/transactions/summary
{
"address": "<string>",
"transactions": {
"earliestTransaction": {
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"decoded": "<string>",
"from_address": "<string>",
"gas": "<string>",
"gas_price": "<string>",
"input": "<string>",
"max_fee_per_gas": "<string>",
"max_priority_fee_per_gas": "<string>",
"nonce": "<string>",
"to_address": "<string>",
"transaction_hash": "<string>",
"transaction_index": 123,
"transaction_type": 123,
"value": "<string>"
},
"latestTransaction": {
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"decoded": "<string>",
"from_address": "<string>",
"gas": "<string>",
"gas_price": "<string>",
"input": "<string>",
"max_fee_per_gas": "<string>",
"max_priority_fee_per_gas": "<string>",
"nonce": "<string>",
"to_address": "<string>",
"transaction_hash": "<string>",
"transaction_index": 123,
"transaction_type": 123,
"value": "<string>"
},
"totalCount": 123
}
}
Path Parameters
A wallet address.
Name of the blockchain (e.g., ethereum, polygon, bsc)
Response
200 - application/json
OK
curl --request GET \
--url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/transactions/summary
{
"address": "<string>",
"transactions": {
"earliestTransaction": {
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"decoded": "<string>",
"from_address": "<string>",
"gas": "<string>",
"gas_price": "<string>",
"input": "<string>",
"max_fee_per_gas": "<string>",
"max_priority_fee_per_gas": "<string>",
"nonce": "<string>",
"to_address": "<string>",
"transaction_hash": "<string>",
"transaction_index": 123,
"transaction_type": 123,
"value": "<string>"
},
"latestTransaction": {
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"decoded": "<string>",
"from_address": "<string>",
"gas": "<string>",
"gas_price": "<string>",
"input": "<string>",
"max_fee_per_gas": "<string>",
"max_priority_fee_per_gas": "<string>",
"nonce": "<string>",
"to_address": "<string>",
"transaction_hash": "<string>",
"transaction_index": 123,
"transaction_type": 123,
"value": "<string>"
},
"totalCount": 123
}
}