todos
todos
Page 103 of 126.
Overview
-
Prepare the feedback
#2449
-
Schedule the report
#2450
-
Complete the draft
#2451
-
Submit the client
#2452
-
Call the draft
#2453
-
Follow up with the feedback
#2454
-
Schedule the timeline
#2455
-
Update the budget
#2456
-
Email the presentation
#2457
-
Organize the draft
#2458
-
Book the client
#2459
-
Plan the contract
#2460
-
Research the timeline
#2461
-
Follow up with the deliverables
#2462
-
Read the presentation
#2463
-
Book the client
#2464
-
Write the draft
#2465
-
Schedule the feedback
#2466
-
Prepare the presentation
#2467
-
Complete the budget
#2468
-
Read the feedback
#2469
-
Update the client
#2470
-
Check the contract
#2471
-
Prepare meeting notes
#2472
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": 2449,
"todoListId": 208,
"title": "Prepare the feedback",
"isDone": false,
"dueDate": "2026-06-10",
"completedAt": null,
"createdAt": "2026-02-10T04:18:54.189Z",
"updatedAt": "2026-03-01T02:50:21.874Z"
},
{
"id": 2450,
"todoListId": 208,
"title": "Schedule the report",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-20T04:41:17.097Z",
"createdAt": "2026-05-13T15:01:34.457Z",
"updatedAt": "2026-05-13T18:33:06.920Z"
},
{
"id": 2451,
"todoListId": 208,
"title": "Complete the draft",
"isDone": false,
"dueDate": "2026-05-19",
"completedAt": null,
"createdAt": "2026-05-07T05:49:04.240Z",
"updatedAt": "2026-05-16T07:08:20.109Z"
}
],
"meta": {
"page": 103,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=103&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=104&limit=24",
"prev": "/api/v1/todos?page=102&limit=24"
}
}