Skip to main content

eth_getFilterLogs

Returns an array of all logs matching filter with given ID on Boba Network.

Use Cases#

  • Historical queries - Get all matching logs for a filter
  • Full event history - Retrieve complete event data for AI-powered dApps, Web2 API integration, enterprise blockchain solutions, and offchain computation

Parameters#

ParameterTypeRequiredDescription
filterIdQUANTITYYesFilter ID from eth_newFilter

Request#

{
"jsonrpc": "2.0",
"method": "eth_getFilterLogs",
"params": ["0x1"],
"id": 1
}

Code Examples#

curl -X POST https://api-boba-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getFilterLogs",
"params": ["0x1"],
"id": 1
}'