115
To serialize a queryset or list of objects instead of a single object instance, you should pass the many=True
flag when instantiating the serializer. So in your case try this:
...
venues = profile.venue_set.all()
serializer = VenueSerializer(venues, many=True)
...
Source:stackexchange.com