todos
todos
Page 69 of 126.
Overview
-
Book the dashboard
#1633
-
Buy the contract
#1634
-
Call the dashboard
#1635
-
Schedule the tickets
#1636
-
Review the timeline
#1637
-
Schedule the client
#1638
-
Email the presentation
#1639
-
Send the tickets
#1640
-
Finish the feedback
#1641
-
Organize the client
#1642
-
Follow up with the deliverables
#1643
-
Review the design
#1644
-
Finish the invoice
#1645
-
Submit the feedback
#1646
-
Research the deliverables
#1647
-
Submit the budget
#1648
-
Complete meeting notes
#1649
-
Read the client
#1650
-
Schedule the tickets
#1651
-
Send the invoice
#1652
-
Follow up with the deliverables
#1653
-
Call the vendor
#1654
-
Finish the feedback
#1655
-
Finish the invoice
#1656
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": 1633,
"todoListId": 138,
"title": "Book the dashboard",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-05T17:07:16.551Z",
"createdAt": "2026-01-08T12:18:38.515Z",
"updatedAt": "2026-03-08T05:52:17.646Z"
},
{
"id": 1634,
"todoListId": 138,
"title": "Buy the contract",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-03-01T07:24:39.676Z",
"updatedAt": "2026-03-16T06:38:33.795Z"
},
{
"id": 1635,
"todoListId": 138,
"title": "Call the dashboard",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-06-03T13:58:40.768Z",
"updatedAt": "2025-11-11T14:09:41.547Z"
}
],
"meta": {
"page": 69,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=69&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=70&limit=24",
"prev": "/api/v1/todos?page=68&limit=24"
}
}