todos
todos
Page 106 of 126.
Overview
-
Update the draft
#2521
-
Write the presentation
#2522
-
Schedule the report
#2523
-
Update the dashboard
#2524
-
Book the deliverables
#2525
-
Book the contract
#2526
-
Follow up with the vendor
#2527
-
Call the presentation
#2528
-
Buy the draft
#2529
-
Organize the documentation
#2530
-
Prepare the draft
#2531
-
Follow up with the budget
#2532
-
Check the client
#2533
-
Update the documentation
#2534
-
Submit the client
#2535
-
Check the contract
#2536
-
Plan the backlog
#2537
-
Update the timeline
#2538
-
Email the budget
#2539
-
Update meeting notes
#2540
-
Fix the team
#2541
-
Prepare the contract
#2542
-
Review the invoice
#2543
-
Schedule the report
#2544
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": 2521,
"todoListId": 214,
"title": "Update the draft",
"isDone": true,
"dueDate": null,
"completedAt": "2025-11-18T13:38:26.324Z",
"createdAt": "2025-05-29T05:23:21.673Z",
"updatedAt": "2025-07-19T12:18:04.485Z"
},
{
"id": 2522,
"todoListId": 214,
"title": "Write the presentation",
"isDone": true,
"dueDate": "2026-06-10",
"completedAt": "2026-01-30T14:23:27.554Z",
"createdAt": "2025-10-16T21:10:32.791Z",
"updatedAt": "2025-11-23T22:11:54.500Z"
},
{
"id": 2523,
"todoListId": 214,
"title": "Schedule the report",
"isDone": false,
"dueDate": "2026-06-05",
"completedAt": null,
"createdAt": "2026-03-28T01:58:40.081Z",
"updatedAt": "2026-05-05T16:44:49.488Z"
}
],
"meta": {
"page": 106,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=106&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=107&limit=24",
"prev": "/api/v1/todos?page=105&limit=24"
}
}