Currently I am trying to fetch from an API which has 2 endpoints:
GET /AllUsers
GET /user_detail/{id}
In order to get the details of all the users, I would have to call GET /AllUsers
, and loop through the IDs to call the GET /user_detail/{id}
endpoint 1 by 1. I wonder if it's possible to have multiple GET /user_detail/{id}
calls running at the same time? Or perhaps there is a better approach?