Contract Events
Query and listen to contract events for any deployed contract on any EVM chain.
Query and listen to contract events for any deployed contract on any EVM chain.
fetch( "https://api.thirdweb.com/v1/contracts/{chainId}/{address}/events?page=1&limit=20&sortOrder=desc", { method: "GET", headers: { "x-secret-key": "<your-project-secret-key>", }, },);x-secret-keybackendx-client-idfrontendx-ecosystem-idoptionalx-ecosystem-partner-idoptionalchainIdintegerRequiredaddressstringRequiredsignaturestringfilterTopic0stringfilterTopic1stringfilterTopic2stringfilterTopic3stringfilterBlockTimestampGteintegernullfilterBlockTimestampLteintegernullfilterBlockNumberGteintegernullfilterBlockNumberLteintegernullpagenumbernull1limitnumbernull20sortOrderstringdesc{ "result": { "events": [ { "address": "string", "blockHash": "string", "blockNumber": 0, "blockTimestamp": 0, "chainId": "string", "data": "string", "logIndex": 0, "topics": [ "string" ], "transactionHash": "string", "transactionIndex": 0, "decoded": { "name": "string", "params": { "property": "value" }, "signature": "string" } } ], "pagination": { "hasMore": true, "limit": 20, "page": 1 } }}