todos
todos
Page 11 of 126.
Overview
-
Follow up with the report
#241
-
Update the client
#242
-
Finish the dashboard
#243
-
Call the dashboard
#244
-
Plan the backlog
#245
-
Review the vendor
#246
-
Plan the client
#247
-
Call the dashboard
#248
-
Update the report
#249
-
Update the feedback
#250
-
Email the tickets
#251
-
Fix the dashboard
#252
-
Complete the dashboard
#253
-
Complete the client
#254
-
Email the vendor
#255
-
Organize the presentation
#256
-
Submit the client
#257
-
Fix the team
#258
-
Finish the checklist
#259
-
Send the dashboard
#260
-
Finish the invoice
#261
-
Submit the budget
#262
-
Submit the timeline
#263
-
Follow up with the design
#264
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": 241,
"todoListId": 21,
"title": "Follow up with the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-15T23:36:31.365Z",
"updatedAt": "2025-12-25T07:01:17.137Z"
},
{
"id": 242,
"todoListId": 21,
"title": "Update the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-09-04T16:54:35.859Z",
"updatedAt": "2026-03-06T04:37:31.202Z"
},
{
"id": 243,
"todoListId": 21,
"title": "Finish the dashboard",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-09-24T19:47:53.757Z",
"updatedAt": "2025-11-21T13:59:57.576Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=11&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=12&limit=24",
"prev": "/api/v1/todos?page=10&limit=24"
}
}