todos
todos
Page 54 of 126.
Overview
-
Update the client
#1273
-
Prepare the design
#1274
-
Email the documentation
#1275
-
Check the budget
#1276
-
Buy the backlog
#1277
-
Review the presentation
#1278
-
Submit the draft
#1279
-
Check meeting notes
#1280
-
Buy the budget
#1281
-
Read the documentation
#1282
-
Fix the presentation
#1283
-
Schedule the dashboard
#1284
-
Plan the invoice
#1285
-
Send the feedback
#1286
-
Update the proposal
#1287
-
Plan the deliverables
#1288
-
Send the report
#1289
-
Buy the feedback
#1290
-
Follow up with the tickets
#1291
-
Call the checklist
#1292
-
Prepare the contract
#1293
-
Buy meeting notes
#1294
-
Plan the client
#1295
-
Schedule the invoice
#1296
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": 1273,
"todoListId": 110,
"title": "Update the client",
"isDone": true,
"dueDate": "2026-05-19",
"completedAt": "2025-10-22T03:49:09.294Z",
"createdAt": "2025-06-21T20:47:20.101Z",
"updatedAt": "2025-11-16T09:37:12.487Z"
},
{
"id": 1274,
"todoListId": 110,
"title": "Prepare the design",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-19T05:27:46.655Z",
"createdAt": "2025-08-13T21:38:26.607Z",
"updatedAt": "2025-11-06T09:13:20.435Z"
},
{
"id": 1275,
"todoListId": 110,
"title": "Email the documentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-12-03T09:33:45.155Z",
"updatedAt": "2025-12-28T13:34:00.916Z"
}
],
"meta": {
"page": 54,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=54&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=55&limit=24",
"prev": "/api/v1/todos?page=53&limit=24"
}
}