For further actions, you may consider blocking this person and/or reporting abuse
Read next
Deploying NestJS Application using Vercel and Supabase
Abayomi Olatunji -
Creating a Live Collaborative Editor with Next.js and Sockets.IO
Hamza Nadeem -
Best Practices for Code Reviews That Foster Team Collaboration
Balraj Singh -
Week 4 Recap of #100DaysOfCode: From Creative CSS to JavaScript Adventures 🚀
heritech9 -
Top comments (3)
Hey Deni, I think I understand your question but not entirely sure. Adding some code snippets or examples to your post would help us help you.
I'm guessing you don't need to loop through the endpoint itself and need to loop through the data it returns? If so, you'll have to see what the structure of the data returned. It's most likely an array, but it's hard to say without knowing the endpoint or what you're doing.
Generally though, the data comes back as JSON, either already as an array or an object of objects. The first step (usually) is to figure out what sort of data you're getting and go from there.
Hi Andy, yes the data comes back as JSON and it's an object of objects from which I need just a part of it not all the data.
You should be able to access that data and set it as a variable then. Here is an example:
It's up to you whether or not you want to store the entire data returned, which might make it easier for you in the long run: