API GET → as usual! Read a data POST → as usual! Create, Update, Delete data How to receive data from clients GET-API CODE @app.route(‘/test’, methods=[‘GET’]) def test_get(): title_receive = request.args.get(‘title_give’) print(title_receive) return jsonify({‘result’:’success’, ‘msg’: ‘이 요청은 GET!’}) CHECK GET-Ajax CODE $.ajax({ type: “GET”, url: “/test?title_give=봄날은간다”, data: {}, success: function(response){ console.log(response) } })