todos
todos
Page 108 of 126.
Overview
-
Submit the design
#2569
-
Check the presentation
#2570
-
Research the backlog
#2571
-
Email the team
#2572
-
Schedule the documentation
#2573
-
Fix the design
#2574
-
Complete the documentation
#2575
-
Finish the presentation
#2576
-
Fix meeting notes
#2577
-
Book the documentation
#2578
-
Read the deliverables
#2579
-
Follow up with the dashboard
#2580
-
Call the timeline
#2581
-
Book the presentation
#2582
-
Email the proposal
#2583
-
Book the feedback
#2584
-
Prepare the checklist
#2585
-
Organize the design
#2586
-
Update the backlog
#2587
-
Follow up with the timeline
#2588
-
Write the presentation
#2589
-
Research the deliverables
#2590
-
Check the deliverables
#2591
-
Check the draft
#2592
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": 2569,
"todoListId": 216,
"title": "Submit the design",
"isDone": false,
"dueDate": "2026-06-08",
"completedAt": null,
"createdAt": "2025-10-19T05:13:36.756Z",
"updatedAt": "2026-01-14T02:06:02.198Z"
},
{
"id": 2570,
"todoListId": 216,
"title": "Check the presentation",
"isDone": true,
"dueDate": "2026-06-08",
"completedAt": "2025-12-03T07:27:48.455Z",
"createdAt": "2025-11-26T20:55:30.045Z",
"updatedAt": "2026-01-23T20:24:46.125Z"
},
{
"id": 2571,
"todoListId": 216,
"title": "Research the backlog",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-01T11:03:39.590Z",
"updatedAt": "2025-12-13T17:14:26.233Z"
}
],
"meta": {
"page": 108,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=108&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=109&limit=24",
"prev": "/api/v1/todos?page=107&limit=24"
}
}