todos
todos
Page 57 of 126.
Overview
-
Complete the presentation
#1345
-
Research the presentation
#1346
-
Call the documentation
#1347
-
Call the vendor
#1348
-
Check meeting notes
#1349
-
Schedule the backlog
#1350
-
Update the vendor
#1351
-
Complete the deliverables
#1352
-
Email the checklist
#1353
-
Complete the checklist
#1354
-
Finish the feedback
#1355
-
Check the presentation
#1356
-
Follow up with the documentation
#1357
-
Read the client
#1358
-
Read the presentation
#1359
-
Check the timeline
#1360
-
Write the dashboard
#1361
-
Research the documentation
#1362
-
Fix the deliverables
#1363
-
Organize the contract
#1364
-
Call the checklist
#1365
-
Check meeting notes
#1366
-
Update the design
#1367
-
Book the timeline
#1368
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": 1345,
"todoListId": 115,
"title": "Complete the presentation",
"isDone": false,
"dueDate": "2026-05-31",
"completedAt": null,
"createdAt": "2025-08-15T03:26:22.051Z",
"updatedAt": "2025-08-17T11:15:09.897Z"
},
{
"id": 1346,
"todoListId": 115,
"title": "Research the presentation",
"isDone": false,
"dueDate": "2026-05-25",
"completedAt": null,
"createdAt": "2026-03-23T10:35:24.390Z",
"updatedAt": "2026-04-26T02:57:56.225Z"
},
{
"id": 1347,
"todoListId": 115,
"title": "Call the documentation",
"isDone": true,
"dueDate": null,
"completedAt": "2026-04-10T13:49:07.024Z",
"createdAt": "2025-11-06T06:12:15.091Z",
"updatedAt": "2026-01-03T18:04:54.258Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=57&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=58&limit=24",
"prev": "/api/v1/todos?page=56&limit=24"
}
}