Logs

Get Event Logs by Address

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

https://api-nova.arbiscan.io/api
   ?module=logs
   &action=getLogs
   &address=0xd864A45334C7a632cA9149993682354D7f967F28
   &fromBlock=0
   &toBlock=2844541
   &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-nova.arbiscan.io/api
   ?module=logs
   &action=getLogs
   &fromBlock=1844460
   &toBlock=1844461
   &topic0=0x1ca47bacd454c26163f84eff4aa514e291ba9fa67ad6029e39567c122bbed30f
   &topic0_1_opr=and
   &topic1=0xf526225862e6e9274db8b01970b1baeee939887287937b327bbe2845f610556d
   &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-nova.arbiscan.io/api
   ?module=logs
   &action=getLogs
   &fromBlock=1844399
   &toBlock=1844400
   &address=0x6475D267A691De86be94CEbf798447c63F93d2e4
   &topic0=0x1ca47bacd454c26163f84eff4aa514e291ba9fa67ad6029e39567c122bbed30f
   &topic0_1_opr=and
   &topic1=0x2aaab99124dfb65153cca5ac4c4948ca34201122d61beacf7fb5c2b521d951c0
   &page=1
   &offset=1000
   &apikey=YourApiKeyToken

Query Parameters

Last updated