fetch('https://mywebsite.com/posts/. . . ') .then(data => { return data.json(); }) .then(post => { console.log(post.title); });