example-data.com

todos

todos

Page 6 of 10.

todoListId
todo-lists/10
title
Write the presentation
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/10
title
Read the budget
isDone
false
dueDate
2026-05-26
completedAt
createdAt
updatedAt
todoListId
todo-lists/10
title
Book meeting notes
isDone
false
dueDate
2026-06-06
completedAt
createdAt
updatedAt
todoListId
todo-lists/10
title
Submit the contract
isDone
false
dueDate
2026-06-14
completedAt
createdAt
updatedAt
todoListId
todo-lists/11
title
Complete the draft
isDone
false
dueDate
2026-06-17
completedAt
createdAt
updatedAt
todoListId
todo-lists/11
title
Plan the tickets
isDone
false
dueDate
2026-05-19
completedAt
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/todos?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = await res.json();
import type { Todo, ListEnvelope } from "https://example-data.com/types/todos.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Todo>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/todos",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "todoListId": 10,
      "title": "Write the presentation",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-09-17T13:49:06.619Z",
      "updatedAt": "2025-12-12T01:15:35.752Z"
    },
    {
      "id": 122,
      "todoListId": 10,
      "title": "Read the budget",
      "isDone": false,
      "dueDate": "2026-05-26",
      "completedAt": null,
      "createdAt": "2026-02-22T02:39:42.092Z",
      "updatedAt": "2026-05-12T04:25:08.950Z"
    },
    {
      "id": 123,
      "todoListId": 10,
      "title": "Book meeting notes",
      "isDone": false,
      "dueDate": "2026-06-06",
      "completedAt": null,
      "createdAt": "2025-11-29T10:08:24.384Z",
      "updatedAt": "2026-03-08T20:29:40.065Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 3016,
    "totalPages": 126
  },
  "links": {
    "self": "/api/v1/todos?page=6",
    "next": "/api/v1/todos?page=7",
    "prev": "/api/v1/todos?page=5"
  }
}
Draftbit