# 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:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![sc\_games](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sc_games/32/124266_2.png) [@sc\_games](https://community.thunkable.com/u/sc_games)
#### Post date: [April 26, 2022, 7:22pm UTC](https://community.thunkable.com/t/finance-app-help/1850014/1 "2022-04-26T19:22:15Z")

</div>

Hello Everyone,  
I need to use the yahoo finance api and i can’t get it to work.  
Please Help Here Is My Code.

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/5/c5da38a0c7a10b5c26032f45222206ab9718c07c.png)  
And here is an example api address : [https://query1.finance.yahoo.com/v7/finance/quote?lang=en-US&region=US&corsDomain=finance.yahoo.com&symbols=AAPL](https://query1.finance.yahoo.com/v7/finance/quote?lang=en-US&region=US&corsDomain=finance.yahoo.com&symbols=AAPL)

---

<div class="post-metadata">

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

</div>

an you explain what are you getting?

> [@sc\_games](#):
>
> can’t get it to work.

Is not descriptive enough.

---

<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).

---

<div class="post-metadata">

### Author: ![sc\_games](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sc_games/32/124266_2.png) [@sc\_games](https://community.thunkable.com/u/sc_games)
#### Post date: [April 27, 2022, 2:57pm UTC](https://community.thunkable.com/t/finance-app-help/1850014/4 "2022-04-27T14:57:11Z")

</div>

Thanks for the help 😅

---

<div class="post-metadata">

### Author: ![firutaarnoldx5hacl](https://avatars.discourse-cdn.com/v4/letter/f/bbe5ce/32.png) [@firutaarnoldx5hacl](https://community.thunkable.com/u/firutaarnoldx5hacl)
#### Post date: [August 2, 2022, 10:00am UTC](https://community.thunkable.com/t/finance-app-help/1850014/6 "2022-08-02T10:00:13Z")

</div>

Hello folks, thank you for sharing your problem and how you solved it here. Can you post your result as well? I’m just wondering because I am just trying to make the same application for one of my projects. We want to make a simple game on our financial site([wealth advice investment articles](http://www.mcgeewm.com), and more). The game needs to be related to any financial activity. It would be awesome if you share any ideas regarding this topic and your codes, so I will have a good example to go. Reach me in private messages with anything. Thank you for being so helpful in advance.

---

<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: [August 2, 2022, 4:02pm UTC](https://community.thunkable.com/t/finance-app-help/1850014/7 "2022-08-02T16:02:19Z")

</div>

I’m always suspicious of first time posts that include links. They are almost always spam. But if this isn’t spam, please let us know. I’m going to remove the link for now.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0f59f292712368bce16ff80133ae10de8a6f27e8.png) [@system](https://community.thunkable.com/u/system)
#### Post date: [October 31, 2022, 4:03pm UTC](https://community.thunkable.com/t/finance-app-help/1850014/8 "2022-10-31T16:03:00Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
