'django-rest-framework speed-up endpoint with http requests

I have an application on DRF and there is an endpoint inside which sends an http requests in the loop for each item.
Endpoint is very slow because of this, any ideas how to speed it up?
example of code

class MyView(APIView):
    def get(self, request: Request) -> Response:
        for cat in Cats.objects.all():
            data = CatsInfoService.get_info(cat) # send http request
        return Response({"message": "ok"})


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source