JQ Playground
Write jq-like expressions to filter, transform, and query JSON data in real-time. Runs entirely in your browser.
Click "Run" or press Ctrl+Enter to execute the query.
About JQ Playground
jq is the de facto standard for querying and transforming JSON on the command line. This playground lets you experiment with jq expressions right in your browser without installing anything. Paste any JSON, write a query, and see results instantly.
Supported Operations
- Dot notation:
.key,.key.nested - Array access:
.[0],.[-1],.[2:5] - Pipe:
.key | .nested - Iteration:
.[], select, map, sort_by, group_by, unique - Built-ins: keys, values, length, type, has, flatten, reverse, min, max, add
- Object/array construction, recursive descent (
..)