todos
todos
Page 67 of 126.
Overview
-
Send the timeline
#1585
-
Finish the report
#1586
-
Send the contract
#1587
-
Book the design
#1588
-
Fix the deliverables
#1589
-
Read the design
#1590
-
Follow up with meeting notes
#1591
-
Plan the invoice
#1592
-
Finish the team
#1593
-
Fix the budget
#1594
-
Update the backlog
#1595
-
Plan the design
#1596
-
Organize the timeline
#1597
-
Email the report
#1598
-
Review the design
#1599
-
Follow up with the checklist
#1600
-
Send the budget
#1601
-
Schedule the vendor
#1602
-
Call the contract
#1603
-
Complete the contract
#1604
-
Complete the tickets
#1605
-
Schedule the checklist
#1606
-
Schedule the client
#1607
-
Check the report
#1608
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": 1585,
"todoListId": 134,
"title": "Send the timeline",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-23T18:18:11.120Z",
"updatedAt": "2026-04-02T12:22:04.911Z"
},
{
"id": 1586,
"todoListId": 134,
"title": "Finish the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-01-18T22:01:36.350Z",
"updatedAt": "2026-02-27T07:12:32.587Z"
},
{
"id": 1587,
"todoListId": 134,
"title": "Send the contract",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-03-06T06:40:17.860Z",
"updatedAt": "2026-04-12T07:07:35.662Z"
}
],
"meta": {
"page": 67,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=67&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=68&limit=24",
"prev": "/api/v1/todos?page=66&limit=24"
}
}