ijq

Interactive terminal UI for exploring and filtering JSON data with jq

brewmacoslinux
Try with needOr install directly
Source

About

Interactive jq

Commands

ijq

Examples

pretty print JSON and browse it interactively$ cat data.json | ijq
filter JSON by field name and see results live$ ijq '.users[] | .name' data.json
search and extract nested values from JSON file$ ijq '.data.items[] | select(.status=="active")' api_response.json
transform JSON structure with jq syntax in interactive mode$ echo '{"a": 1, "b": 2}' | ijq 'keys'
explore API JSON response with keyboard navigation$ curl https://api.example.com/data | ijq