jq Playground
Query and transform JSON data with jq-like expressions. Filter, map, and transform your data interactively.
Input JSON
Output
Supported Operations
⚡ Basic Operations
.- Identity.foo- Property access.foo.bar- Nested access.[]- Iterate array.[0]- Index access
🔧 Functions
length- Array/string lengthkeys- Object keysvalues- Object valuesmap(expr)- Transform eachselect(cond)- Filter
📦 Construction
{a, b}- Object from fields[.foo, .bar]- Array| pipe- Pipe operationsfirst- First elementlast- Last element