todos
todos
Page 34 of 126.
Overview
-
Email the checklist
#793
-
Buy the budget
#794
-
Review the report
#795
-
Organize the backlog
#796
-
Prepare the vendor
#797
-
Call the backlog
#798
-
Email the timeline
#799
-
Check the budget
#800
-
Follow up with the invoice
#801
-
Update the draft
#802
-
Email the report
#803
-
Read meeting notes
#804
-
Prepare the proposal
#805
-
Plan the timeline
#806
-
Prepare the contract
#807
-
Submit meeting notes
#808
-
Call the budget
#809
-
Research the contract
#810
-
Organize the presentation
#811
-
Send the proposal
#812
-
Complete the checklist
#813
-
Plan the report
#814
-
Prepare the invoice
#815
-
Research the design
#816
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": 793,
"todoListId": 67,
"title": "Email the checklist",
"isDone": true,
"dueDate": "2026-06-05",
"completedAt": "2026-03-25T15:19:10.318Z",
"createdAt": "2025-09-28T00:18:18.544Z",
"updatedAt": "2025-09-29T15:00:08.626Z"
},
{
"id": 794,
"todoListId": 67,
"title": "Buy the budget",
"isDone": true,
"dueDate": null,
"completedAt": "2026-01-19T15:33:11.180Z",
"createdAt": "2026-01-04T08:27:57.712Z",
"updatedAt": "2026-01-28T01:56:00.409Z"
},
{
"id": 795,
"todoListId": 67,
"title": "Review the report",
"isDone": false,
"dueDate": "2026-06-11",
"completedAt": null,
"createdAt": "2026-04-08T16:21:47.604Z",
"updatedAt": "2026-05-04T05:00:20.341Z"
}
],
"meta": {
"page": 34,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=34&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=35&limit=24",
"prev": "/api/v1/todos?page=33&limit=24"
}
}