todos
todos
Page 65 of 126.
Overview
-
Submit the tickets
#1537
-
Write the vendor
#1538
-
Write the tickets
#1539
-
Organize the presentation
#1540
-
Write the deliverables
#1541
-
Review the proposal
#1542
-
Book the invoice
#1543
-
Submit the feedback
#1544
-
Complete the tickets
#1545
-
Buy the feedback
#1546
-
Schedule the deliverables
#1547
-
Plan the draft
#1548
-
Check the draft
#1549
-
Follow up with the design
#1550
-
Write the checklist
#1551
-
Update the client
#1552
-
Read the dashboard
#1553
-
Organize the backlog
#1554
-
Email the deliverables
#1555
-
Buy the tickets
#1556
-
Plan the report
#1557
-
Finish the draft
#1558
-
Book the budget
#1559
-
Finish the report
#1560
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": 1537,
"todoListId": 130,
"title": "Submit the tickets",
"isDone": true,
"dueDate": "2026-05-17",
"completedAt": "2025-11-03T03:33:45.314Z",
"createdAt": "2025-08-09T11:56:07.805Z",
"updatedAt": "2026-05-21T00:13:09.431Z"
},
{
"id": 1538,
"todoListId": 130,
"title": "Write the vendor",
"isDone": false,
"dueDate": "2026-06-02",
"completedAt": null,
"createdAt": "2026-05-11T08:56:54.880Z",
"updatedAt": "2026-05-17T16:18:36.558Z"
},
{
"id": 1539,
"todoListId": 130,
"title": "Write the tickets",
"isDone": false,
"dueDate": "2026-06-18",
"completedAt": null,
"createdAt": "2025-05-24T14:42:07.262Z",
"updatedAt": "2026-01-16T20:47:58.631Z"
}
],
"meta": {
"page": 65,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=65&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=66&limit=24",
"prev": "/api/v1/todos?page=64&limit=24"
}
}