get https://api.parsiq.net/tsunami///contract//transfers
Get transfers for a token contract
Authorization required to use this endpoint
To get your API key, follow the instruction here.
The Get Token Transfers endpoint provides data on all interactions bound with a particular token. Specifying the token's contract address is required. The range must be defined by block_number
, timestamp
, or block_hash
. Find more information on range parameters here.
The request below will extract all data of the specified NFT's contract address on Ethereum Mainnet with the number of items limited by 50 and outgoing direction. Be sure to replace YOUR_API_KEY
with your actual API key.
curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-1/v1/contract/0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85/transfers?block_number_start=1&block_number_end=latest&direction=outgoing&asset_type=nft&limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'

The following request will retrieve all data of the MATIC contract address on Ethereum Mainnet with the number of items limited by 50 and incoming direction. Be sure to replace YOUR_API_KEY
with your actual API key.
curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-1/v1/contract/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/transfers?block_number_start=1&block_number_end=latest&direction=incoming&asset_type=ft&limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'
