todos
todos
Page 72 of 126.
Overview
-
Plan the presentation
#1705
-
Buy the dashboard
#1706
-
Research the client
#1707
-
Call the invoice
#1708
-
Read the feedback
#1709
-
Complete the vendor
#1710
-
Finish the design
#1711
-
Follow up with the invoice
#1712
-
Fix the budget
#1713
-
Submit the tickets
#1714
-
Send the draft
#1715
-
Email the client
#1716
-
Review the team
#1717
-
Finish meeting notes
#1718
-
Review the checklist
#1719
-
Research the deliverables
#1720
-
Buy the client
#1721
-
Plan the contract
#1722
-
Fix the feedback
#1723
-
Prepare the tickets
#1724
-
Research the presentation
#1725
-
Organize the dashboard
#1726
-
Call the timeline
#1727
-
Call the feedback
#1728
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": 1705,
"todoListId": 143,
"title": "Plan the presentation",
"isDone": true,
"dueDate": null,
"completedAt": "2025-08-03T16:55:50.681Z",
"createdAt": "2025-06-27T23:39:05.762Z",
"updatedAt": "2025-09-26T08:42:12.527Z"
},
{
"id": 1706,
"todoListId": 143,
"title": "Buy the dashboard",
"isDone": true,
"dueDate": "2026-05-18",
"completedAt": "2025-06-14T22:13:53.115Z",
"createdAt": "2025-06-05T11:05:21.380Z",
"updatedAt": "2025-11-05T22:45:42.694Z"
},
{
"id": 1707,
"todoListId": 143,
"title": "Research the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-19T10:51:15.656Z",
"updatedAt": "2025-12-08T10:30:54.192Z"
}
],
"meta": {
"page": 72,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=72&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=73&limit=24",
"prev": "/api/v1/todos?page=71&limit=24"
}
}