Open the filter bar
The filter is available in the Preview view when the response is JSON.Send a request that returns JSON
Send any request whose response is JSON. The body opens in the Preview view, formatted and syntax-highlighted.
Click the funnel icon
In the response body toolbar, click the funnel icon on the right. A full-width filter bar appears below the toolbar.

Write the expression
The filter uses standard JSONPath. A few common patterns:| Expression | Selects |
|---|---|
$.store.book[*].author | The author of every book under store.book |
$.items[?(@.price < 10)] | Every item in items whose price is below 10 |
$.headers | The whole headers object |
$.results[0] | The first element of the results array |




