Get contract self-destructs by contract, origin, caller

Authorization required to use this endpoint

To get your API key, follow the instruction here.

The Get Contract Self-Destructs endpoint provides details on user-triggered, referred to as the caller, contract self-destruction and allows you to determine the precise time of initiation. At least one of the following parameters must be specified: caller, contract, or origin. The range must be defined by block_number, timestamp, or block_hash. Find more information on range parameters here.

This request will retrieve all instances where the specified caller has initiated self-destruction of a contract on Polygon Mumbai Testnet. Be sure to replace YOUR_API_KEY with your actual API key.

curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-80001/v1/contracts/self-destructs?caller=0x43f5a4422cce46b741f4e194e2b6df9a8baa2dc0&block_number_start=0&block_number_end=latest' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'

The following request will demonstrate how to obtain the precise timing of the specified contract's self-destruction on Polygon Mumbai Testnet. Be sure to replace YOUR_API_KEY with your actual API key.

curl --request GET \
--url 'https://api.parsiq.net/tsunami/eip155-80001/v1/contracts/self-destructs?contract=0x65f43f86614e6e9884352a068ad67ea7d16ec06c&block_number_start=0&block_number_end=latest' \
--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!