Get transfers for a wallet address

Authorization required to use this endpoint

To get your API key, follow the instruction here.

The Get Wallet Transfers endpoint provides a record of all historical transfers affiliated with a specific wallet address. The range must be defined by block_number, timestamp, or block_hash. Find more information on range parameters here.

The following request will pull out all transfers of fungible tokens on the specified address on Ethereum Görli Testnet. Be sure to replace YOUR_API_KEY with your actual API key.

curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-5/v1/address/0x951533e146f901E82E06e1EEce75aeFdaA1f61fd/transfers?block_number_start=0&block_number_end=latest&limit=1000' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'

This request will return every incoming native currency transfer that happened on the given address on Ethereum Görli Testnet between blocks 5756600 and 5760000. Be sure to replace YOUR_API_KEY with your actual API key.

curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-5/v1/address/0x951533e146f901E82E06e1EEce75aeFdaA1f61fd/transfers?block_number_start=5756600&block_number_end=5760000&limit=1000&direction=incoming&asset_type=native' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'

The request below will fetch every single transfer of fungible tokens on the given address on Ethereum Görli Testnet between October 29th, 2021, 15:30 GMT and October 29th, 2021, 15:45 GMT. Be sure to replace YOUR_API_KEY with your actual API key.

curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-5/v1/address/0x951533e146f901E82E06e1EEce75aeFdaA1f61fd/transfers?timestamp_start=1635521400&timestamp_end=1635522300&contract=0x3f152b63ec5ca5831061b2dccfb29a874c317502&limit=1000' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'
Language
Authorization
Bearer
JWT
Click Try It! to start a request and see the response here!