todos
todos
Page 112 of 126.
Overview
-
Prepare the backlog
#2665
-
Complete the client
#2666
-
Send the dashboard
#2667
-
Update the presentation
#2668
-
Research the documentation
#2669
-
Research the report
#2670
-
Update the presentation
#2671
-
Plan the timeline
#2672
-
Finish the proposal
#2673
-
Write the documentation
#2674
-
Fix the checklist
#2675
-
Email the dashboard
#2676
-
Write the client
#2677
-
Submit the team
#2678
-
Review the timeline
#2679
-
Check the checklist
#2680
-
Update the presentation
#2681
-
Review the design
#2682
-
Buy the budget
#2683
-
Buy the budget
#2684
-
Buy the invoice
#2685
-
Complete the proposal
#2686
-
Plan the feedback
#2687
-
Send the draft
#2688
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": 2665,
"todoListId": 224,
"title": "Prepare the backlog",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-16T03:53:21.131Z",
"updatedAt": "2026-04-08T15:33:51.970Z"
},
{
"id": 2666,
"todoListId": 225,
"title": "Complete the client",
"isDone": true,
"dueDate": null,
"completedAt": "2025-08-10T18:12:12.840Z",
"createdAt": "2025-07-17T06:12:41.948Z",
"updatedAt": "2026-02-17T00:49:32.153Z"
},
{
"id": 2667,
"todoListId": 225,
"title": "Send the dashboard",
"isDone": false,
"dueDate": "2026-06-08",
"completedAt": null,
"createdAt": "2025-11-29T04:00:34.092Z",
"updatedAt": "2026-04-14T10:06:18.053Z"
}
],
"meta": {
"page": 112,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=112&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=113&limit=24",
"prev": "/api/v1/todos?page=111&limit=24"
}
}