example-data.com

todos

todos

Page 10 of 10.

todoListId
todo-lists/18
title
Research the presentation
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/18
title
Organize the proposal
isDone
true
dueDate
2026-05-20
completedAt
createdAt
updatedAt
todoListId
todo-lists/18
title
Review the documentation
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/18
title
Write the dashboard
isDone
true
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/18
title
Schedule the invoice
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/18
title
Submit the vendor
isDone
true
dueDate
2026-06-18
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": 217,
      "todoListId": 18,
      "title": "Research the presentation",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2026-02-21T01:00:57.211Z",
      "updatedAt": "2026-05-19T09:59:16.610Z"
    },
    {
      "id": 218,
      "todoListId": 18,
      "title": "Organize the proposal",
      "isDone": true,
      "dueDate": "2026-05-20",
      "completedAt": "2025-11-08T11:54:30.870Z",
      "createdAt": "2025-09-24T09:40:35.929Z",
      "updatedAt": "2026-02-12T19:09:52.008Z"
    },
    {
      "id": 219,
      "todoListId": 18,
      "title": "Review the documentation",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-09-14T20:56:38.153Z",
      "updatedAt": "2025-10-15T15:01:11.902Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 3016,
    "totalPages": 126
  },
  "links": {
    "self": "/api/v1/todos?page=10",
    "next": "/api/v1/todos?page=11",
    "prev": "/api/v1/todos?page=9"
  }
}
Draftbit