todos
todos
Page 53 of 126.
Overview
-
Complete the vendor
#1249
-
Plan the deliverables
#1250
-
Prepare the team
#1251
-
Write the report
#1252
-
Call the dashboard
#1253
-
Read the feedback
#1254
-
Follow up with the checklist
#1255
-
Read the backlog
#1256
-
Finish the tickets
#1257
-
Update the presentation
#1258
-
Call the dashboard
#1259
-
Research the team
#1260
-
Email the tickets
#1261
-
Send the backlog
#1262
-
Submit the documentation
#1263
-
Buy the timeline
#1264
-
Call the report
#1265
-
Update the backlog
#1266
-
Submit the feedback
#1267
-
Read the client
#1268
-
Check the checklist
#1269
-
Buy the feedback
#1270
-
Follow up with the timeline
#1271
-
Plan the documentation
#1272
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": 1249,
"todoListId": 108,
"title": "Complete the vendor",
"isDone": true,
"dueDate": "2026-05-29",
"completedAt": "2026-05-19T04:12:16.590Z",
"createdAt": "2025-12-14T22:43:44.316Z",
"updatedAt": "2026-04-08T09:08:10.053Z"
},
{
"id": 1250,
"todoListId": 108,
"title": "Plan the deliverables",
"isDone": false,
"dueDate": "2026-06-03",
"completedAt": null,
"createdAt": "2025-07-03T06:36:11.479Z",
"updatedAt": "2025-11-08T22:27:03.060Z"
},
{
"id": 1251,
"todoListId": 108,
"title": "Prepare the team",
"isDone": false,
"dueDate": "2026-06-19",
"completedAt": null,
"createdAt": "2026-02-04T09:47:18.185Z",
"updatedAt": "2026-03-10T06:31:45.189Z"
}
],
"meta": {
"page": 53,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=53&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=54&limit=24",
"prev": "/api/v1/todos?page=52&limit=24"
}
}