Wallet Transaction Data
Google Sheets & Excel
Airtable
BTC
, ETH
, BSC
, DOGE
, LTC
, BCH
, BTG
, DASH
& DGB
Currently, BCH supports only legacy addresses as input
Returns up to 500 transactions from a given address. One can filter by
page
, block number
or date
(only ETH
) when provided as an option, for example:CRYPTOFINANCE("<blockchain>:<address>", "tx", "2022-09-20")
,CRYPTOFINANCE("<blockchain>:<address>", "tx", "page2")
or CRYPTOFINANCE("<blockchain>:<address>", "tx", "block123456")
The following data is returned:
- Hash
- Status (failed or succeeded)
- Type (sent or received)
- Block Number
- Value (in the native blockchain's cryptocurrency)
- Fee (in the native blockchain's cryptocurrency)
- From Address
- To Address
- Last Updated
Get transactions with no options provided (up to 500 records).
=CRYPTOFINANCE("ETH:0x550cd530bc893fc6d2b4df6bea587f17142ab64e", "tx")

Get transactions with page number as an option (up to 500 records per page)
=CRYPTOFINANCE("ETH:0x550cd530bc893fc6d2b4df6bea587f17142ab64e", "tx", "page2")

Get transactions before a date given as an option (up to 500 records per call)
Only
ETH
supports filtering until a given date. The given date has to have the format YYYY-MM-DD, for example 2022-10-22.=CRYPTOFINANCE("ETH:0x550cd530bc893fc6d2b4df6bea587f17142ab64e", "tx", "2022-10-10")

Get transactions before a block given as an option (up to 500 records per call)
=CRYPTOFINANCE("BSC:0xc5D19E131Fe722c07a04Fb4Ae4A3DAe341630126", "tx", "block17065583")

Currently not available for Airtable. Coming soon...