todos
todos
Page 107 of 126.
Overview
-
Submit the deliverables
#2545
-
Follow up with the invoice
#2546
-
Plan the invoice
#2547
-
Submit the proposal
#2548
-
Read the design
#2549
-
Schedule meeting notes
#2550
-
Read the presentation
#2551
-
Review the invoice
#2552
-
Schedule the presentation
#2553
-
Call meeting notes
#2554
-
Plan the presentation
#2555
-
Book the design
#2556
-
Follow up with meeting notes
#2557
-
Book the backlog
#2558
-
Schedule the documentation
#2559
-
Read meeting notes
#2560
-
Check the tickets
#2561
-
Finish the invoice
#2562
-
Follow up with the tickets
#2563
-
Check the vendor
#2564
-
Send the design
#2565
-
Check meeting notes
#2566
-
Update meeting notes
#2567
-
Complete the backlog
#2568
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": 2545,
"todoListId": 215,
"title": "Submit the deliverables",
"isDone": true,
"dueDate": null,
"completedAt": "2025-12-12T11:51:16.710Z",
"createdAt": "2025-11-16T22:47:55.150Z",
"updatedAt": "2026-05-21T06:00:05.740Z"
},
{
"id": 2546,
"todoListId": 215,
"title": "Follow up with the invoice",
"isDone": false,
"dueDate": "2026-06-13",
"completedAt": null,
"createdAt": "2025-08-01T05:21:20.895Z",
"updatedAt": "2025-09-28T21:35:11.698Z"
},
{
"id": 2547,
"todoListId": 215,
"title": "Plan the invoice",
"isDone": false,
"dueDate": "2026-06-04",
"completedAt": null,
"createdAt": "2026-03-15T22:04:50.567Z",
"updatedAt": "2026-03-31T04:44:19.042Z"
}
],
"meta": {
"page": 107,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=107&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=108&limit=24",
"prev": "/api/v1/todos?page=106&limit=24"
}
}