get https://api.parsiq.net/tsunami///calls
Get calls for a specific contract
Authorization required to use this endpoint
To get your API key, follow the instruction here.
The Get Calls endpoint allows users to access information about interactions with a smart contract, including external function calls, transfers of native currency, and contract creations. At least one of the following parameters must be specified: sig_hash
, sender
, contract
, or origin
. The range must be defined by block_number
, timestamp
, or block_hash
. Find more information on range parameters here.
With the specified sender
, the following request will return data with the external function calls, native currency transfers, and contact creations on Ethereum Mainnet. Be sure to replace YOUR_API_KEY
with your actual API key.
curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-1/v1/calls?block_number_start=0&block_number_end=latest&limit=1000&sender=0x7d459a4cfa4b70fcd322a649153f6f51d8e8db3d' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'
