Get historical transfers of a wallet address.

📘

Authorization is required to use this endpoint

To get your API key follow the instructions HERE.

Examples

This one will bring every FT transfer happened on an address on Ethereum Görli

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 'Authorization: Bearer YOUR_API_KEY'


For this one, it will give you every incoming Native Transfer happened on an address between blocks 5756600 and 576000

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 'Authorization: Bearer YOUR_API_KEY'


This will find every single transfer of specific tokens on an address between 29 Oct 2021 15:30 GMT and 29 Oct 2021 15:45 GMT

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 'Authorization: Bearer YOUR_API_KEY'

📘

The range must be defined by block_number, timestamp or block_hash:
[block_number_start, block_number_end]; [timestamp_start, timestamp_end]; [block_hash].
(More about Range)

Language
Authentication
Bearer
JWT
Click Try It! to start a request and see the response here!