Sending JSON and status code with a Flask response [duplicate]
Use flask.jsonify(). This method takes any serializable data type. For example I have used a dictionary data in the following example. from flask import jsonify @app.route(‘/login’, methods=[‘POST’]) def login(): data = {‘name’: ‘nabin khadka’} return jsonify(data) To return a status code, return a tuple of the response and code: return jsonify(data), 200 Note that 200 … Read more