fetch('/test', {method:"POST", body:JSON.stringify({name:"NAME"}), headers: {'Content-type': 'application/json; charset=UTF-8'}}) .then(response => response.json()) .then(data => console.log(data.name)); /*console log 'Name'*/