example-data.com

todos / #110

todoListId
todo-lists/8
title
Plan the dashboard
isDone
true
dueDate
completedAt
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/todos/110" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/todos/110"
);
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/110"
);
const todo = (await res.json()) as Todo;
import requests

res = requests.get(
    "https://example-data.com/api/v1/todos/110"
)
todo = res.json()
{
  "id": 110,
  "todoListId": 8,
  "title": "Plan the dashboard",
  "isDone": true,
  "dueDate": null,
  "completedAt": "2026-05-21T14:52:34.196Z",
  "createdAt": "2026-04-18T02:00:37.618Z",
  "updatedAt": "2026-05-21T13:36:09.778Z"
}
Draftbit