fetch("localhost:3000/api/home") // first step .then(response => response.json()) // second step .then(data => { console.log(data) }) .catch(error => console.error(error))