todos
todos
Page 33 of 126.
Overview
-
Finish the backlog
#769
-
Email the design
#770
-
Buy the budget
#771
-
Review the budget
#772
-
Email the contract
#773
-
Buy the backlog
#774
-
Write the design
#775
-
Check the client
#776
-
Prepare the proposal
#777
-
Prepare the draft
#778
-
Review meeting notes
#779
-
Finish the client
#780
-
Write the backlog
#781
-
Complete the checklist
#782
-
Read the report
#783
-
Complete the tickets
#784
-
Organize the design
#785
-
Check the vendor
#786
-
Email the report
#787
-
Update the feedback
#788
-
Book the timeline
#789
-
Book the documentation
#790
-
Finish the feedback
#791
-
Call the invoice
#792
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": 769,
"todoListId": 65,
"title": "Finish the backlog",
"isDone": false,
"dueDate": "2026-06-21",
"completedAt": null,
"createdAt": "2025-07-19T03:24:35.938Z",
"updatedAt": "2026-04-15T07:40:31.804Z"
},
{
"id": 770,
"todoListId": 65,
"title": "Email the design",
"isDone": true,
"dueDate": "2026-05-26",
"completedAt": "2025-10-31T08:15:19.971Z",
"createdAt": "2025-09-09T21:29:06.953Z",
"updatedAt": "2025-09-14T13:35:09.792Z"
},
{
"id": 771,
"todoListId": 65,
"title": "Buy the budget",
"isDone": false,
"dueDate": "2026-05-31",
"completedAt": null,
"createdAt": "2025-12-16T14:30:06.062Z",
"updatedAt": "2025-12-16T19:49:31.959Z"
}
],
"meta": {
"page": 33,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=33&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=34&limit=24",
"prev": "/api/v1/todos?page=32&limit=24"
}
}