Hi everyone, Iâm finally finding some space from world chaos and looking more into Pharo, and I have a question about retrieving json data from feeds - how is the best way to elegantly parse it - e.g. I am doing : url := ZnUrl fromString: 'http://climatedataapi.worldbank.org/climateweb/rest/v1/country/annualavg/prâ. url addPathSegments: {aDate1 asString. aDate2 asString. aCountryCode}. result := ZnEasy get: url. content := STONJSON fromString: result contents. ... However I was kind of surprised there wasn't something on a ZnResponse for getting json objects e.g. result getJsonObjects or something like that? Itâs so common I wonder if I am missing some trick? What arenât there helpers in place for this or is there a better way to do this that I havenât found yet? I was kind of thinking something like (which obviously I can add myself) result asJsonObjects sum: [:obj | (obj at: âannualDataâ) first ] Tim