GET
/
v2
/
{chain_name}
/
wallets
/
{wallet_address}
/
transactions
/
summary
Get Wallet Transaction Summary
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/wallets/{wallet_address}/transactions/summary
{
"earliest_transaction": {
"block_hash": 1.1422479551680867e+77,
"block_number": 22412527,
"block_timestamp": "2025-05-04T19:38:11Z",
"contract_address": 2.807754160281623e+47,
"cumulative_gas_used": "2692235",
"effective_gas_price": "1000000000",
"from_address": 2.343505912018747e+47,
"gas": "40000",
"gas_price": "1000000000",
"gas_used": "22901",
"input": "0x6874...",
"l1_fee": "<string>",
"l1_fee_scalar": "<string>",
"l1_gas_price": "<string>",
"l1_gas_used": "<string>",
"max_fee_per_gas": "1000000000",
"max_priority_fee_per_gas": "1000000000",
"nonce": "132573",
"status": 0,
"to_address": 2.807754160281623e+47,
"transaction_hash": 6.735722084347401e+76,
"transaction_index": 43,
"transaction_type": 2,
"value": 0,
"value_raw": "0"
},
"latest_transaction": {
"block_hash": 1.1422479551680867e+77,
"block_number": 22412527,
"block_timestamp": "2025-05-04T19:38:11Z",
"contract_address": 2.807754160281623e+47,
"cumulative_gas_used": "2692235",
"effective_gas_price": "1000000000",
"from_address": 2.343505912018747e+47,
"gas": "40000",
"gas_price": "1000000000",
"gas_used": "22901",
"input": "0x6874...",
"l1_fee": "<string>",
"l1_fee_scalar": "<string>",
"l1_gas_price": "<string>",
"l1_gas_used": "<string>",
"max_fee_per_gas": "1000000000",
"max_priority_fee_per_gas": "1000000000",
"nonce": "132573",
"status": 0,
"to_address": 2.807754160281623e+47,
"transaction_hash": 6.735722084347401e+76,
"transaction_index": 43,
"transaction_type": 2,
"value": 0,
"value_raw": "0"
},
"total_transactions": 1321
}

Authorizations

Authorization
string
header
required

(Optional) Enter your API key in the format: Bearer <api_key>. Providing an API key may grant higher rate limits or access to additional features. The API will function without an API key for basic access.

Path Parameters

wallet_address
string
required

The wallet address.

Example:

1.2380129724542482e+48

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum
Example:

"ethereum"

Response

200
application/json

Successfully retrieved transaction summary for the wallet.

The response is of type object.