todos
todos
Page 60 of 126.
Overview
-
Write the documentation
#1417
-
Fix the feedback
#1418
-
Send the feedback
#1419
-
Review the deliverables
#1420
-
Book the report
#1421
-
Complete the contract
#1422
-
Schedule the deliverables
#1423
-
Follow up with the draft
#1424
-
Send the design
#1425
-
Fix the budget
#1426
-
Book the draft
#1427
-
Research the client
#1428
-
Update the invoice
#1429
-
Finish the feedback
#1430
-
Research the backlog
#1431
-
Organize the client
#1432
-
Submit the feedback
#1433
-
Send the design
#1434
-
Call the contract
#1435
-
Book the presentation
#1436
-
Submit the documentation
#1437
-
Review the invoice
#1438
-
Submit the invoice
#1439
-
Book the client
#1440
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": 1417,
"todoListId": 122,
"title": "Write the documentation",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-21T13:08:35.779Z",
"createdAt": "2025-05-24T13:46:28.531Z",
"updatedAt": "2026-04-22T18:38:03.986Z"
},
{
"id": 1418,
"todoListId": 122,
"title": "Fix the feedback",
"isDone": false,
"dueDate": "2026-06-13",
"completedAt": null,
"createdAt": "2026-04-23T05:30:25.121Z",
"updatedAt": "2026-05-13T16:18:30.187Z"
},
{
"id": 1419,
"todoListId": 122,
"title": "Send the feedback",
"isDone": true,
"dueDate": "2026-05-26",
"completedAt": "2025-12-25T10:43:14.442Z",
"createdAt": "2025-11-27T21:23:00.911Z",
"updatedAt": "2026-02-23T04:10:22.018Z"
}
],
"meta": {
"page": 60,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=60&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=61&limit=24",
"prev": "/api/v1/todos?page=59&limit=24"
}
}