JSONPlaceholder

Fake Online REST API for Testing and Prototyping
Powered by JSON Server + LowDB

        fetch('https://jsonplaceholder.cypress.io/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))