You have to use type="json" in the controller. It will go like the following:
class MySuperController(http.Controller):
@http.route('/devolive/review/<int:product_id>', type="json", method=['GET'])
def get_review_data(self, product_id):
return result
This will always return the data in JSON format.