example-data.com

todos

todos

Page 8 of 10.

todoListId
todo-lists/14
title
Submit the team
isDone
false
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/14
title
Finish the draft
isDone
false
dueDate
2026-06-11
completedAt
createdAt
updatedAt
todoListId
todo-lists/14
title
Follow up with the tickets
isDone
false
dueDate
2026-05-26
completedAt
createdAt
updatedAt
todoListId
todo-lists/14
title
Complete the vendor
isDone
true
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/14
title
Read the dashboard
isDone
true
dueDate
completedAt
createdAt
updatedAt
todoListId
todo-lists/14
title
Follow up with the invoice
isDone
true
dueDate
2026-06-12
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": 169,
      "todoListId": 14,
      "title": "Submit the team",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-05-30T01:50:12.145Z",
      "updatedAt": "2025-09-19T06:05:23.407Z"
    },
    {
      "id": 170,
      "todoListId": 14,
      "title": "Finish the draft",
      "isDone": false,
      "dueDate": "2026-06-11",
      "completedAt": null,
      "createdAt": "2026-04-27T05:07:23.742Z",
      "updatedAt": "2026-05-03T05:15:12.832Z"
    },
    {
      "id": 171,
      "todoListId": 14,
      "title": "Follow up with the tickets",
      "isDone": false,
      "dueDate": "2026-05-26",
      "completedAt": null,
      "createdAt": "2025-09-05T14:47:06.479Z",
      "updatedAt": "2026-03-17T02:40:59.651Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 3016,
    "totalPages": 126
  },
  "links": {
    "self": "/api/v1/todos?page=8",
    "next": "/api/v1/todos?page=9",
    "prev": "/api/v1/todos?page=7"
  }
}
Draftbit