# Unable to parse Web API response

**URL:** https://community.thunkable.com/t/unable-to-parse-web-api-response/1674371
**Category:** Questions about Thunkable X
**Created:** [January 16, 2022, 9:28am UTC](https://community.thunkable.com/t/unable-to-parse-web-api-response/1674371 "2022-01-16T09:28:06Z")
**Posts on this page:** 1
**Showing post:** 18

<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: [January 17, 2022, 9:48pm UTC](https://community.thunkable.com/t/unable-to-parse-web-api-response/1674371/18 "2022-01-17T21:48:31Z")

</div>

“employees” is a list… why are you getting the object properties of that list? I see lots of problems with the way you are parsing the JSON response:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/b/7/b7c007371442ba73345f02bd62d271fc35565beb.png)

You don’t need the extra `get object properties of` block at the top of the loop. And since you’re getting list items and storing them in `j`, you can just use j… you don’t need to get the properties of “employees” over and over again. That’s already included in `j`.

Try this instead:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/0/2007320e339ef84ea33c4d4dc01589e6f5b639ad.png)

Here’s a modified project that generates a list of the “email” property values from the API:

[https://x.thunkable.com/copy/c53c0dbe2f7706fe186b4660aa7d3640](https://x.thunkable.com/copy/c53c0dbe2f7706fe186b4660aa7d3640)

And the result when Live Tested on Android looks like this preview:

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/4/8/488d4014c51dd1e73400604f7a3e3e3b1f6c06df.png)

---

_[View the full topic](https://community.thunkable.com/t/unable-to-parse-web-api-response/1674371)._
