jq Playground — Run jq Online
Run real jq filters on JSON in your browser via WebAssembly. Filter, map, and transform JSON with the full jq syntax — private and instant.
Your data never leaves your browser
JSON input
jq filter
jq output
About this tool
Real jqWASM engineExample filtersLive outputFullscreen
How to use
- Paste JSON input.
- Write a jq filter (e.g. .users[] | select(.active)).
- Copy the formatted jq output.
Examples
Filter active
.users[] | select(.active) | .name
["Ada"]