Run jq in your terminal
Pipe JSON into jq and read a field; no input file is needed.
Example input
{"name":"Ada"}Output
"Ada"
Single quotes protect the JSON and filter from POSIX-shell expansion. jq prints JSON strings with quotes unless you pass -r.