Get contract creates by contract, origin, caller

Authorization required to use this endpoint

To get your API key, follow the instruction here.

The Get Contract Creates endpoint provides details on user-triggered, referred to as the caller, contract creation, 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.

The request below will extract all instances where the specified caller has initiated the creation 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/creates?caller=0x2698AFdaA7141aF799cedF194D7b17cF7ECCFA7e&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 creation 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/creates?contract=0xEd8ecA1917F586B67D2fB88930002E60828958a6&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!