todos
todos
Page 66 of 126.
Overview
-
Buy the design
#1561
-
Research the deliverables
#1562
-
Organize the invoice
#1563
-
Call the dashboard
#1564
-
Schedule the tickets
#1565
-
Read the dashboard
#1566
-
Fix the proposal
#1567
-
Write the budget
#1568
-
Plan the team
#1569
-
Plan the presentation
#1570
-
Research the budget
#1571
-
Follow up with the checklist
#1572
-
Schedule the team
#1573
-
Read the budget
#1574
-
Read the team
#1575
-
Call the team
#1576
-
Read the checklist
#1577
-
Plan the budget
#1578
-
Send the documentation
#1579
-
Follow up with the feedback
#1580
-
Organize the report
#1581
-
Book the invoice
#1582
-
Complete the client
#1583
-
Update the team
#1584
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": 1561,
"todoListId": 132,
"title": "Buy the design",
"isDone": false,
"dueDate": "2026-05-28",
"completedAt": null,
"createdAt": "2025-08-06T10:36:57.853Z",
"updatedAt": "2026-03-18T15:47:23.042Z"
},
{
"id": 1562,
"todoListId": 133,
"title": "Research the deliverables",
"isDone": true,
"dueDate": "2026-05-21",
"completedAt": "2026-01-22T17:49:28.746Z",
"createdAt": "2025-06-29T14:26:41.625Z",
"updatedAt": "2025-10-09T10:33:31.851Z"
},
{
"id": 1563,
"todoListId": 133,
"title": "Organize the invoice",
"isDone": false,
"dueDate": "2026-06-17",
"completedAt": null,
"createdAt": "2025-05-26T07:55:34.096Z",
"updatedAt": "2025-06-05T16:50:35.443Z"
}
],
"meta": {
"page": 66,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=66&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=67&limit=24",
"prev": "/api/v1/todos?page=65&limit=24"
}
}