downloading an image using okhttputils2 is easy enough:
dim somebitmap as bitmap
somebitmap.Initialize2(Job.GetInputStream)
Job.Release
dim someimageview as imageview
initialize
activity.addview
someimageview.bitmap = somebitmap (maybe resize, whatever)
no need to save it locally; just assign it to an imageview.
the request to download is a normal httpjob.download( url_to_image ). presumably, no way to know the image's url until you've handled the json request. so you have to go back for it. unclear to me if the various elements of that json response are enough for you to grab the image. if you're in charge of the response, you might want to make sure whatever you need to download the image is present in the response.