Unable to parse Web API response

“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:

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:

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

https://x.thunkable.com/copy/c53c0dbe2f7706fe186b4660aa7d3640

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

image