todos
todos
Page 44 of 126.
Overview
-
Prepare the presentation
#1033
-
Organize the invoice
#1034
-
Book the budget
#1035
-
Research the client
#1036
-
Fix the draft
#1037
-
Buy the team
#1038
-
Complete the contract
#1039
-
Organize the timeline
#1040
-
Follow up with the checklist
#1041
-
Read the client
#1042
-
Schedule the report
#1043
-
Finish the documentation
#1044
-
Submit the budget
#1045
-
Buy the design
#1046
-
Update the vendor
#1047
-
Check the deliverables
#1048
-
Book the team
#1049
-
Send the report
#1050
-
Research the vendor
#1051
-
Complete the report
#1052
-
Finish the timeline
#1053
-
Finish the checklist
#1054
-
Plan the presentation
#1055
-
Schedule the checklist
#1056
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": 1033,
"todoListId": 86,
"title": "Prepare the presentation",
"isDone": false,
"dueDate": "2026-06-20",
"completedAt": null,
"createdAt": "2025-07-09T10:24:07.844Z",
"updatedAt": "2025-09-25T07:02:28.143Z"
},
{
"id": 1034,
"todoListId": 86,
"title": "Organize the invoice",
"isDone": false,
"dueDate": "2026-05-22",
"completedAt": null,
"createdAt": "2025-11-29T06:11:19.311Z",
"updatedAt": "2026-01-15T06:32:59.867Z"
},
{
"id": 1035,
"todoListId": 86,
"title": "Book the budget",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-27T03:51:25.385Z",
"updatedAt": "2025-12-14T06:17:20.825Z"
}
],
"meta": {
"page": 44,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=44&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=45&limit=24",
"prev": "/api/v1/todos?page=43&limit=24"
}
}