JSFiddle - React, Tailwind, and code Playground
HTML
<h1>
Open console to view the json response
</h1>
<ul>
<li>Body : Quia et suscipit ...</li>
<li>Id : 1</li>
<li>Title : Sunt Aut Facere ...</li>
<li>User ID : 1</li>
</ul>
JavaScript
fetch('https://jsonplaceholder.typicode.com/posts/1')
.then((response) => response.json())
.then((json) => console.log(json));