todos
todos
Page 62 of 126.
Overview
-
Complete the team
#1465
-
Send the vendor
#1466
-
Check the budget
#1467
-
Write meeting notes
#1468
-
Schedule the backlog
#1469
-
Review the invoice
#1470
-
Research the backlog
#1471
-
Update the presentation
#1472
-
Research the dashboard
#1473
-
Review the report
#1474
-
Plan the vendor
#1475
-
Send the report
#1476
-
Call the contract
#1477
-
Research the contract
#1478
-
Schedule the backlog
#1479
-
Buy the documentation
#1480
-
Finish the budget
#1481
-
Plan the feedback
#1482
-
Submit the draft
#1483
-
Check the proposal
#1484
-
Finish the vendor
#1485
-
Research the team
#1486
-
Fix the invoice
#1487
-
Fix the backlog
#1488
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": 1465,
"todoListId": 126,
"title": "Complete the team",
"isDone": false,
"dueDate": "2026-06-14",
"completedAt": null,
"createdAt": "2025-10-06T10:59:33.557Z",
"updatedAt": "2026-05-21T16:58:41.158Z"
},
{
"id": 1466,
"todoListId": 126,
"title": "Send the vendor",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-07-28T23:44:04.530Z",
"updatedAt": "2025-09-05T10:24:22.598Z"
},
{
"id": 1467,
"todoListId": 126,
"title": "Check the budget",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-03-18T09:58:00.366Z",
"updatedAt": "2026-05-10T16:35:55.239Z"
}
],
"meta": {
"page": 62,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=62&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=63&limit=24",
"prev": "/api/v1/todos?page=61&limit=24"
}
}