todos
todos
Page 88 of 126.
Overview
-
Check the presentation
#2089
-
Check the budget
#2090
-
Schedule the contract
#2091
-
Update the budget
#2092
-
Prepare the vendor
#2093
-
Fix the report
#2094
-
Fix the deliverables
#2095
-
Buy meeting notes
#2096
-
Fix the documentation
#2097
-
Submit the backlog
#2098
-
Book the draft
#2099
-
Buy the design
#2100
-
Call the checklist
#2101
-
Schedule the vendor
#2102
-
Book the proposal
#2103
-
Check the presentation
#2104
-
Research the report
#2105
-
Submit the client
#2106
-
Plan the report
#2107
-
Check the design
#2108
-
Email the deliverables
#2109
-
Prepare the backlog
#2110
-
Email the invoice
#2111
-
Check the feedback
#2112
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": 2089,
"todoListId": 179,
"title": "Check the presentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-13T04:28:35.610Z",
"updatedAt": "2025-12-18T19:05:18.677Z"
},
{
"id": 2090,
"todoListId": 180,
"title": "Check the budget",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-12-28T12:26:40.423Z",
"updatedAt": "2026-02-17T13:36:22.978Z"
},
{
"id": 2091,
"todoListId": 180,
"title": "Schedule the contract",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-21T21:31:46.258Z",
"updatedAt": "2026-04-13T00:57:07.005Z"
}
],
"meta": {
"page": 88,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=88&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=89&limit=24",
"prev": "/api/v1/todos?page=87&limit=24"
}
}