todos
todos
Page 31 of 126.
Overview
-
Send the report
#721
-
Call the presentation
#722
-
Follow up with the deliverables
#723
-
Schedule the draft
#724
-
Follow up with the contract
#725
-
Book the draft
#726
-
Complete the feedback
#727
-
Write the tickets
#728
-
Follow up with the vendor
#729
-
Submit the documentation
#730
-
Call the contract
#731
-
Plan meeting notes
#732
-
Organize the presentation
#733
-
Follow up with the tickets
#734
-
Finish the timeline
#735
-
Email the invoice
#736
-
Follow up with the budget
#737
-
Check the draft
#738
-
Research the checklist
#739
-
Fix the deliverables
#740
-
Check the proposal
#741
-
Research the team
#742
-
Check the presentation
#743
-
Read the vendor
#744
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": 721,
"todoListId": 61,
"title": "Send the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-08-24T02:32:25.696Z",
"updatedAt": "2025-10-05T16:34:24.653Z"
},
{
"id": 722,
"todoListId": 61,
"title": "Call the presentation",
"isDone": false,
"dueDate": "2026-06-06",
"completedAt": null,
"createdAt": "2025-11-19T11:08:14.790Z",
"updatedAt": "2026-05-10T21:11:01.992Z"
},
{
"id": 723,
"todoListId": 61,
"title": "Follow up with the deliverables",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-11T03:01:53.570Z",
"createdAt": "2025-07-18T21:02:29.390Z",
"updatedAt": "2025-11-04T15:44:42.571Z"
}
],
"meta": {
"page": 31,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=31&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=32&limit=24",
"prev": "/api/v1/todos?page=30&limit=24"
}
}