todos
todos
Page 64 of 126.
Overview
-
Schedule meeting notes
#1513
-
Book the proposal
#1514
-
Schedule the documentation
#1515
-
Submit the invoice
#1516
-
Complete the dashboard
#1517
-
Organize the design
#1518
-
Plan meeting notes
#1519
-
Send the presentation
#1520
-
Email the draft
#1521
-
Complete the contract
#1522
-
Prepare the feedback
#1523
-
Plan the timeline
#1524
-
Read the timeline
#1525
-
Complete the design
#1526
-
Call the client
#1527
-
Organize the feedback
#1528
-
Schedule the timeline
#1529
-
Fix the deliverables
#1530
-
Fix the timeline
#1531
-
Plan the budget
#1532
-
Check the team
#1533
-
Update the team
#1534
-
Complete the checklist
#1535
-
Update the tickets
#1536
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": 1513,
"todoListId": 128,
"title": "Schedule meeting notes",
"isDone": true,
"dueDate": "2026-05-31",
"completedAt": "2026-05-06T06:17:21.818Z",
"createdAt": "2025-08-03T03:42:05.015Z",
"updatedAt": "2026-04-02T10:24:08.011Z"
},
{
"id": 1514,
"todoListId": 129,
"title": "Book the proposal",
"isDone": false,
"dueDate": "2026-06-15",
"completedAt": null,
"createdAt": "2025-10-16T03:36:29.162Z",
"updatedAt": "2025-11-02T08:16:37.280Z"
},
{
"id": 1515,
"todoListId": 129,
"title": "Schedule the documentation",
"isDone": true,
"dueDate": "2026-06-20",
"completedAt": "2026-01-07T01:03:59.604Z",
"createdAt": "2025-09-21T15:34:53.789Z",
"updatedAt": "2025-12-20T02:34:38.306Z"
}
],
"meta": {
"page": 64,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=64&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=65&limit=24",
"prev": "/api/v1/todos?page=63&limit=24"
}
}