Logs

The Event Log API was designed to provide an alternative to the native eth_getLogs.

Below are the list of supported filter parameters:

  • fromBlock, toBlock, address

  • topic0, topic1, topic2, topic3 (32 Bytes per topic)

  • topic0_1_opr (and|or between topic0 & topic1), topic1_2_opr (and|or between topic1 & topic2), topic2_3_opr (and|or between topic2 & topic3), topic0_2_opr (and|or between topic0 & topic2), topic0_3_opr (and|or between topic0 & topic3), topic1_3_opr (and|or between topic1 & topic3)

Some parameters to take note of 📝

  • FromBlock & ToBlock accepts the blocknumber (integer, NOT hex) or 'latest' (earliest & pending is NOT supported yet)

  • Topic Operator (opr) choices are either 'and' or 'or' and are restricted to the above choices only

  • FromBlock & ToBlock parameters are required

  • An address and/or topic(X) parameters are required, when multiple topic(X) parameters are used the topicX_X_opr (and|or operator) is also required

For performance & security considerations, only the first 1000 results are return. So please narrow down the filter parameters.

Sample Log API Queries

Get Event Logs from block number 0to 'latest' , where log address = 0x58f61bc8b980e210a38425ce3f8b5bfab4e20e70and topic[0] = 0xae50a8f5aa49a62dcb477f92d3a683859c24e9d319bea7a11b7a383cb6b38c74

https://api-sepolia.arbiscan.io/api
   ?module=logs
   &action=getLogs
   &fromBlock=0
   &toBlock=latest
   &address=0x58f61bc8b980e210a38425ce3f8b5bfab4e20e70
   &topic0=0xae50a8f5aa49a62dcb477f92d3a683859c24e9d319bea7a11b7a383cb6b38c74
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Get Event Logs from block number 0to block 'latest', where log address = 0x20572e4c090f15667cf7378e16fad2ea0e2f3eff, topic[0] = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef 'AND' topic[1] = 0x000000000000000000000000880ce87d80499f1db28cbd40f1f57f68102360d3

https://api-sepolia.arbiscan.io/api
   ?module=logs
   &action=getLogs
   &fromBlock=0
   &toBlock=latest
   &address=0xf199c2be8f06db036ee8ae48d3fc1e074e236056
   &topic0=0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
   &topic0_1_opr=and
   &topic1=0x000000000000000000000000413bb94c8515f2bd338417f09119da461e015194
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Last updated