todos
todos
Page 48 of 126.
Overview
-
Follow up with the documentation
#1129
-
Finish the deliverables
#1130
-
Submit the tickets
#1131
-
Finish the contract
#1132
-
Plan the vendor
#1133
-
Follow up with the tickets
#1134
-
Book the documentation
#1135
-
Complete the invoice
#1136
-
Schedule the contract
#1137
-
Follow up with the timeline
#1138
-
Update the client
#1139
-
Complete the client
#1140
-
Write the dashboard
#1141
-
Read the documentation
#1142
-
Fix the feedback
#1143
-
Submit the design
#1144
-
Submit the presentation
#1145
-
Read the draft
#1146
-
Research meeting notes
#1147
-
Read the proposal
#1148
-
Fix the documentation
#1149
-
Book the report
#1150
-
Email the checklist
#1151
-
Finish the timeline
#1152
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": 1129,
"todoListId": 95,
"title": "Follow up with the documentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-12-21T03:33:14.866Z",
"updatedAt": "2026-03-19T16:22:34.835Z"
},
{
"id": 1130,
"todoListId": 96,
"title": "Finish the deliverables",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-08T12:12:47.371Z",
"createdAt": "2026-05-07T20:08:45.611Z",
"updatedAt": "2026-05-19T04:20:07.755Z"
},
{
"id": 1131,
"todoListId": 96,
"title": "Submit the tickets",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-19T08:48:32.707Z",
"createdAt": "2026-04-17T05:24:13.298Z",
"updatedAt": "2026-04-23T01:01:48.642Z"
}
],
"meta": {
"page": 48,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=48&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=49&limit=24",
"prev": "/api/v1/todos?page=47&limit=24"
}
}