# [[Hoppscotch]]
_Created: 2025-08-28_ | #programming | [[020 Programming MOC|Programming]]
- Website: https://hoppscotch.com/
-
Opensource alternative to Postman. [Desktop binaries](https://hoppscotch.com/download) exist for Mac. Self-hosted docker installation documentation is [here](https://docs.hoppscotch.io/documentation/self-host/community-edition/install-and-build).
## Response filtering
There is a provision for filtering long response using JSONPath. I had some trouble with getting the regex matches right. This one worked.
```json
$[?(@.type === "mysql" && @.name.match("dialog"))]
```