> For the complete documentation index, see [llms.txt](https://docs.nodies.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nodies.app/supported-api-methods/polygon-mainnet-pos/eth_getfilterlogs.md).

# eth\_getFilterLogs

### Parameters

`Filter ID` - Generated after calling [`eth_newFilter`](/supported-api-methods/polygon-mainnet-pos/eth_newfilter.md) or [eth\_newPendingTransactionFilter](/supported-api-methods/polygon-mainnet-pos/eth_newpendingtransactionfilter.md).

#### Sample Request

{% code overflow="wrap" %}

```
curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{
  "jsonrpc": "2.0",
  "method": "eth_getFilterLogs",
  "params": [
    "0xf0df48cf9c194d6477d6f52799a1b45f"
  ],
  "id": 1
}'
```

{% endcode %}

#### Sample Response

{% code overflow="wrap" %}

```
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": []
}
```

{% endcode %}
