todos
todos
Page 56 of 126.
Overview
-
Research the draft
#1321
-
Check the proposal
#1322
-
Finish the timeline
#1323
-
Email the client
#1324
-
Book the team
#1325
-
Email the deliverables
#1326
-
Complete the report
#1327
-
Update the dashboard
#1328
-
Organize the dashboard
#1329
-
Book the checklist
#1330
-
Buy meeting notes
#1331
-
Update the dashboard
#1332
-
Write the timeline
#1333
-
Check the budget
#1334
-
Book the deliverables
#1335
-
Book the checklist
#1336
-
Read the report
#1337
-
Research the proposal
#1338
-
Read the documentation
#1339
-
Write the design
#1340
-
Finish the dashboard
#1341
-
Call the backlog
#1342
-
Submit meeting notes
#1343
-
Buy the timeline
#1344
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": 1321,
"todoListId": 113,
"title": "Research the draft",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-03-20T08:38:58.933Z",
"updatedAt": "2026-03-21T14:20:48.293Z"
},
{
"id": 1322,
"todoListId": 113,
"title": "Check the proposal",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-29T21:34:38.228Z",
"createdAt": "2026-03-26T15:00:34.804Z",
"updatedAt": "2026-05-18T15:54:38.869Z"
},
{
"id": 1323,
"todoListId": 113,
"title": "Finish the timeline",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-01-09T09:57:47.545Z",
"updatedAt": "2026-02-27T08:20:08.252Z"
}
],
"meta": {
"page": 56,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=56&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=57&limit=24",
"prev": "/api/v1/todos?page=55&limit=24"
}
}