todos
todos
Page 71 of 126.
Overview
-
Review the team
#1681
-
Schedule the client
#1682
-
Submit the dashboard
#1683
-
Check the contract
#1684
-
Read the invoice
#1685
-
Schedule the timeline
#1686
-
Review the proposal
#1687
-
Review the feedback
#1688
-
Email the client
#1689
-
Complete the contract
#1690
-
Submit the vendor
#1691
-
Read the tickets
#1692
-
Organize the vendor
#1693
-
Complete the deliverables
#1694
-
Complete the documentation
#1695
-
Write the feedback
#1696
-
Research the client
#1697
-
Read meeting notes
#1698
-
Book the client
#1699
-
Submit meeting notes
#1700
-
Update the proposal
#1701
-
Plan the design
#1702
-
Call the client
#1703
-
Update the deliverables
#1704
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": 1681,
"todoListId": 141,
"title": "Review the team",
"isDone": false,
"dueDate": "2026-05-21",
"completedAt": null,
"createdAt": "2025-08-06T07:35:59.338Z",
"updatedAt": "2025-12-05T14:17:10.109Z"
},
{
"id": 1682,
"todoListId": 141,
"title": "Schedule the client",
"isDone": true,
"dueDate": null,
"completedAt": "2026-01-03T22:10:16.868Z",
"createdAt": "2025-07-06T05:46:00.178Z",
"updatedAt": "2026-03-18T09:35:44.508Z"
},
{
"id": 1683,
"todoListId": 141,
"title": "Submit the dashboard",
"isDone": false,
"dueDate": "2026-06-14",
"completedAt": null,
"createdAt": "2025-08-07T15:38:51.293Z",
"updatedAt": "2025-08-28T05:10:10.607Z"
}
],
"meta": {
"page": 71,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=71&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=72&limit=24",
"prev": "/api/v1/todos?page=70&limit=24"
}
}