jq

Work with JSON data

Examples

Pretty Print

      jq '.' res.json
    

Access property

      jq '.user' res.json
    

Prints the user property

Nested property

      jq '.user.name' res.json
    

Prints the user.name property

Combine with curl

      curl http://api.open-notify.org/iss-now.json | jq '.'