todos
todos
Page 28 of 126.
Overview
-
Call the timeline
#649
-
Read the dashboard
#650
-
Write the contract
#651
-
Email the draft
#652
-
Complete the documentation
#653
-
Research the vendor
#654
-
Book the feedback
#655
-
Organize the client
#656
-
Call the team
#657
-
Finish the checklist
#658
-
Research the dashboard
#659
-
Organize meeting notes
#660
-
Book the checklist
#661
-
Buy the client
#662
-
Fix the report
#663
-
Update the proposal
#664
-
Email the deliverables
#665
-
Plan the team
#666
-
Prepare the client
#667
-
Complete the documentation
#668
-
Email the invoice
#669
-
Email the deliverables
#670
-
Plan the invoice
#671
-
Send the dashboard
#672
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": 649,
"todoListId": 55,
"title": "Call the timeline",
"isDone": true,
"dueDate": null,
"completedAt": "2026-02-02T04:24:22.153Z",
"createdAt": "2025-08-17T20:03:47.545Z",
"updatedAt": "2026-02-04T04:47:17.962Z"
},
{
"id": 650,
"todoListId": 55,
"title": "Read the dashboard",
"isDone": false,
"dueDate": "2026-06-13",
"completedAt": null,
"createdAt": "2025-11-23T18:09:04.304Z",
"updatedAt": "2026-01-31T08:40:13.383Z"
},
{
"id": 651,
"todoListId": 56,
"title": "Write the contract",
"isDone": false,
"dueDate": "2026-06-03",
"completedAt": null,
"createdAt": "2025-08-03T19:39:21.529Z",
"updatedAt": "2025-10-09T13:11:44.429Z"
}
],
"meta": {
"page": 28,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=28&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=29&limit=24",
"prev": "/api/v1/todos?page=27&limit=24"
}
}