addresses
List transactions involving a specific address with to-from filtering
Retrieves transactions involving a specific address, with optional filtering for transactions sent from or to the address.
get/{chain_id}/api/v2/addresses/{address_hash_param}/transactions
Path parameters
address_hash_paramstring required
Address hash in the path
chain_idstring required
The ID of the blockchain
Query parameters
filter'to' | 'from'
Filter transactions by direction:
- to - Only show transactions sent to this address
- from - Only show transactions sent from this address If omitted, all transactions involving the address are returned.
sort'block_number' | 'value' | 'fee'
Sort results by:
- block_number - Sort by block number
- value - Sort by transaction value
- fee - Sort by transaction fee Should be used together with order parameter.
order'asc' | 'desc'
Sort order:
- asc - Ascending order
- desc - Descending order Should be used together with sort parameter.
items_countinteger
Number of items per page
Block number for paging
Transaction index for paging
inserted_atstring date-time
Inserted at timestamp for paging (ISO8601)
hashstring
Transaction hash for paging
Transaction value for paging
feestring
Transaction fee for paging
Response
All transactions for the specified address.
Changes
No recorded changes to this endpoint across all 1 revision of this API.