example-data.com

todos / #33

todoListId
todo-lists/3
title
Follow up with the presentation
isDone
true
dueDate
completedAt
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/todos/33" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/todos/33"
);
const todo = await res.json();
import type { Todo } from "https://example-data.com/types/todos.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/todos/33"
);
const todo = (await res.json()) as Todo;
import requests

res = requests.get(
    "https://example-data.com/api/v1/todos/33"
)
todo = res.json()
{
  "id": 33,
  "todoListId": 3,
  "title": "Follow up with the presentation",
  "isDone": true,
  "dueDate": null,
  "completedAt": "2026-05-19T22:04:47.994Z",
  "createdAt": "2026-05-18T10:26:28.520Z",
  "updatedAt": "2026-05-21T12:25:51.598Z"
}
Draftbit