Todos

This JSON object represents a task item in a to-do or project management application, providing information about the task's status, title, and creation date.

fetch

fetch("https://api.v2.rohitgadekar.dev/todos")
  .then((res) => res.json())
  .then(console.log);

sample response

 {
      "id": 1,
      "title": "Complete project proposal",
      "completed": false,
      "createdAt": "2023-08-31T08:00:00Z"
}
Table of Contents