# Finance App Help

**URL:** https://community.thunkable.com/t/finance-app-help/1850014
**Category:** Questions about Thunkable X
**Tags:** help
**Created:** [April 26, 2022, 7:22pm UTC](https://community.thunkable.com/t/finance-app-help/1850014 "2022-04-26T19:22:15Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [April 26, 2022, 8:47pm UTC](https://community.thunkable.com/t/finance-app-help/1850014/3 "2022-04-26T20:47:37Z")

</div>

If you copy and paste the JSON response text from a browser window into [Best JSON Viewer and JSON Beautifier Online](https://codebeautify.org/jsonviewer) and click Tree Viewer, you’ll see the data formatted in an easy-to-read way.

Then, if you click on a property name such as “displayName”, you’ll see the path to that property at the top of the window:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/4/24da26b19544a3914806261fd5e34b625873a941.png)

In this case, it’s object \> quoteResponse \> result \> 0 \> displayName.

So you would need to convert the JSON to an object, as you’ve done with the green `response` block above and then for the `get property` text string, you would want to use this:

quoteResponse.result[1].displayName

The [1] represents the first array item in the “result” JSON property. JSON numbers the first item in an array/list zero (0) but Thunkable lists start with 1 which is why the property name has a 1 instead of a 0.

To learn more about how to parse JSON, see my [tutorial](https://community.thunkable.com/t/api-json-tutorial-video/1140575).

---

_[View the full topic](https://community.thunkable.com/t/finance-app-help/1850014)._
