example-data.com

todos

todos

Page 2 of 10.

todoListId
todo-lists/2
title
Review the client
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/2
title
Organize the feedback
isDone
false
dueDate
2026-05-31
completedAt
createdAt
updatedAt
todoListId
todo-lists/2
title
Call the checklist
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/2
title
Prepare the dashboard
isDone
false
dueDate
2026-06-20
completedAt
createdAt
updatedAt
todoListId
todo-lists/2
title
Write the feedback
isDone
false
dueDate
2026-05-17
completedAt
createdAt
updatedAt
todoListId
todo-lists/2
title
Call the backlog
isDone
true
dueDate
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": 25,
      "todoListId": 2,
      "title": "Review the client",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-10-31T12:33:28.075Z",
      "updatedAt": "2026-01-18T16:09:38.037Z"
    },
    {
      "id": 26,
      "todoListId": 2,
      "title": "Organize the feedback",
      "isDone": false,
      "dueDate": "2026-05-31",
      "completedAt": null,
      "createdAt": "2026-02-25T07:21:30.744Z",
      "updatedAt": "2026-04-14T12:20:02.321Z"
    },
    {
      "id": 27,
      "todoListId": 2,
      "title": "Call the checklist",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-09-07T13:58:29.139Z",
      "updatedAt": "2025-10-24T09:14:46.517Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 3016,
    "totalPages": 126
  },
  "links": {
    "self": "/api/v1/todos?page=2",
    "next": "/api/v1/todos?page=3",
    "prev": "/api/v1/todos?page=1"
  }
}
Draftbit