todos
todos
Page 52 of 126.
Overview
-
Plan the deliverables
#1225
-
Read the deliverables
#1226
-
Email the team
#1227
-
Complete the dashboard
#1228
-
Buy the client
#1229
-
Follow up with the backlog
#1230
-
Read the documentation
#1231
-
Call meeting notes
#1232
-
Research the report
#1233
-
Read the dashboard
#1234
-
Email the checklist
#1235
-
Buy the backlog
#1236
-
Submit the design
#1237
-
Email the documentation
#1238
-
Check the documentation
#1239
-
Prepare the budget
#1240
-
Update the proposal
#1241
-
Complete the draft
#1242
-
Finish the draft
#1243
-
Prepare the documentation
#1244
-
Fix the proposal
#1245
-
Organize meeting notes
#1246
-
Book the contract
#1247
-
Buy the feedback
#1248
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/todos";
const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Todo>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1225,
"todoListId": 107,
"title": "Plan the deliverables",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-08-28T17:12:49.778Z",
"updatedAt": "2026-02-07T09:24:10.746Z"
},
{
"id": 1226,
"todoListId": 107,
"title": "Read the deliverables",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-27T11:43:45.904Z",
"updatedAt": "2026-03-21T00:47:39.901Z"
},
{
"id": 1227,
"todoListId": 107,
"title": "Email the team",
"isDone": true,
"dueDate": "2026-05-27",
"completedAt": "2026-02-22T23:50:01.717Z",
"createdAt": "2025-06-26T07:32:46.181Z",
"updatedAt": "2025-11-02T21:48:10.483Z"
}
],
"meta": {
"page": 52,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=52&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=53&limit=24",
"prev": "/api/v1/todos?page=51&limit=24"
}
}