todos
todos
Page 76 of 126.
Overview
-
Complete the dashboard
#1801
-
Read the proposal
#1802
-
Organize the feedback
#1803
-
Email the tickets
#1804
-
Send the vendor
#1805
-
Follow up with the presentation
#1806
-
Update the timeline
#1807
-
Book the checklist
#1808
-
Update the feedback
#1809
-
Review the dashboard
#1810
-
Book the budget
#1811
-
Send the deliverables
#1812
-
Email the presentation
#1813
-
Buy the backlog
#1814
-
Research the backlog
#1815
-
Send the documentation
#1816
-
Review the proposal
#1817
-
Send the invoice
#1818
-
Organize the budget
#1819
-
Book the team
#1820
-
Read the presentation
#1821
-
Research the documentation
#1822
-
Write the deliverables
#1823
-
Call the checklist
#1824
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": 1801,
"todoListId": 151,
"title": "Complete the dashboard",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-05-09T04:06:55.736Z",
"updatedAt": "2026-05-11T15:47:03.296Z"
},
{
"id": 1802,
"todoListId": 151,
"title": "Read the proposal",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-08-21T23:30:54.492Z",
"updatedAt": "2025-11-21T15:01:08.099Z"
},
{
"id": 1803,
"todoListId": 151,
"title": "Organize the feedback",
"isDone": true,
"dueDate": "2026-05-18",
"completedAt": "2026-03-11T13:41:28.053Z",
"createdAt": "2025-11-28T04:18:08.971Z",
"updatedAt": "2026-01-21T01:14:01.500Z"
}
],
"meta": {
"page": 76,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=76&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=77&limit=24",
"prev": "/api/v1/todos?page=75&limit=24"
}
}