example-data.com
Menu
Browse docs and collections

Overview

todos / #1927

Submit the documentation

todoListId
todo-lists/162
title
Submit the documentation
isDone
true
dueDate
2026-05-18
completedAt
createdAt
updatedAt

Component variants

Related

References

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/todos/1927" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/todos/1927"
);
const todo = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/todos.d.ts https://example-data.com/types/todos.d.ts
import type { Todo } from "./types/todos";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/todos/1927"
)
todo = res.json()

Response

{
  "id": 1927,
  "todoListId": 162,
  "title": "Submit the documentation",
  "isDone": true,
  "dueDate": "2026-05-18",
  "completedAt": "2026-04-20T05:32:04.345Z",
  "createdAt": "2025-06-06T12:45:30.295Z",
  "updatedAt": "2025-06-19T10:53:47.492Z"
}