todos
todos
Page 47 of 126.
Overview
-
Email the timeline
#1105
-
Research the client
#1106
-
Organize the team
#1107
-
Read the team
#1108
-
Research the invoice
#1109
-
Read the feedback
#1110
-
Organize the design
#1111
-
Plan the invoice
#1112
-
Check meeting notes
#1113
-
Send the invoice
#1114
-
Email the proposal
#1115
-
Send the client
#1116
-
Submit the checklist
#1117
-
Submit the tickets
#1118
-
Write the deliverables
#1119
-
Update the dashboard
#1120
-
Organize the deliverables
#1121
-
Write the team
#1122
-
Book the draft
#1123
-
Review the presentation
#1124
-
Prepare the report
#1125
-
Prepare the backlog
#1126
-
Schedule the design
#1127
-
Check the presentation
#1128
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": 1105,
"todoListId": 94,
"title": "Email the timeline",
"isDone": false,
"dueDate": "2026-06-04",
"completedAt": null,
"createdAt": "2026-05-07T16:03:13.558Z",
"updatedAt": "2026-05-16T13:00:38.371Z"
},
{
"id": 1106,
"todoListId": 94,
"title": "Research the client",
"isDone": false,
"dueDate": "2026-05-22",
"completedAt": null,
"createdAt": "2025-06-04T00:14:14.888Z",
"updatedAt": "2026-03-19T18:42:55.450Z"
},
{
"id": 1107,
"todoListId": 94,
"title": "Organize the team",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-05-29T12:12:24.018Z",
"updatedAt": "2025-06-10T16:22:24.697Z"
}
],
"meta": {
"page": 47,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=47&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=48&limit=24",
"prev": "/api/v1/todos?page=46&limit=24"
}
}