How to get data out of a JSON value


This is info in the response green box after the Web_API call
So it is JSON file. Status = 200 so it means success. Also when I just print the response I see the JSON file as shown here. So all seems to be fine . .
I tried

and this

Both don’t work. The first one should have worked.
@tatiang and @ioannis I checked both of your past examples that did not work. Please advice. Thanks

Thanks @brianl for the advice. The whole thing is enclosed in a list [ symbolizes it So we have to consider it as a JSON inside a list. Here is the solution:


response is a List. As it is enclosed between [ … ]
get object from JSON will get the JSON { … } inside the response which is enclosed between [ … ]
get # 1 will get the first item { } of the list
Then get property will get the property of lat
Done!!

1 Like