# eth\_uninstallFilter

1. #### Parameters

   <mark style="color:blue;">filter ID</mark> string- The filter ID that needs to be uninstalled. It should always be called when watch is no longer needed. Additionally, Filters timeout when they aren't requested with eth\_getFilterChanges for a period of time

```json
curl https://Krypc-End Point URL/ \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0x10ff0bfba9472c87932c56632eef8f5cc70910e8e71d"],"id":1}'
```

2. #### Returns

   <mark style="color:blue;">**result**</mark> It returns true if the filter was successfully uninstalled, otherwise false
