JSON is a serialized object - this means it is very amenable to deserialization. This allows you to turn your JSON into a java object that you can query at will.
First you would need an appropriate java bean - the structure of your JSON is simple so that shouldn't be hard.
You can then use a tool such as Jackson to read your data and put it onto the bean.