Logs

Get Event Logs by Address

Returns the event logs from an address, with optional filtering by block range.

https://api-opbnb.bscscan.com/api
   ?module=logs
   &action=getLogs
   &address=0xcbc14e02f03a19d275ef62f05e5deb963859462c
   &fromBlock=8648196
   &toBlock=8650196
   &page=1
   &offset=1000
   &apikey=YourApiKeyToken

Query Parameters

Get Event Logs by Topics

Returns the events log in a block range, filtered by topics.

https://api-opbnb.bscscan.com/api
   ?module=logs
   &action=getLogs
   &fromBlock=8658190
   &toBlock=8658196
   &topic0=0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
   &topic0_1_opr=and
   &topic1=0x0000000000000000000000000000000000000000000000000000000000000000
   &page=1
   &offset=1000
   &apikey=YourApiKeyToken

Usage:

  • For a single topic, specify the topic number such as topic0, topic1, topic2, topic3

  • For multiple topics, specify the topic numbers and topic operator either and or or such as below 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)

Query Parameters

Get Event Logs by Address filtered by Topics

Returns the event logs from an address, filtered by topics and block range.

https://api-opbnb.bscscan.com/api
   ?module=logs
   &action=getLogs
   &fromBlock=6222123
   &toBlock=6222123
   &address=0xe90feAEff7B2Ca89b967FA08934C0045b5Fd4c1e
   &topic0=0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62
   &topic0_1_opr=and
   &topic1=0x000000000000000000000000cf42ac2207e0daa36a3cd87d23f56cc1dc24bace
   &page=1
   &offset=1000
   &apikey=YourApiKeyToken

Query Parameters

Last updated