todos
todos
Page 59 of 126.
Overview
-
Send the dashboard
#1393
-
Complete the budget
#1394
-
Submit the invoice
#1395
-
Review the vendor
#1396
-
Read the dashboard
#1397
-
Review meeting notes
#1398
-
Follow up with the draft
#1399
-
Buy the contract
#1400
-
Prepare the design
#1401
-
Submit the dashboard
#1402
-
Read the invoice
#1403
-
Fix the draft
#1404
-
Check the draft
#1405
-
Finish the feedback
#1406
-
Submit meeting notes
#1407
-
Update meeting notes
#1408
-
Research the design
#1409
-
Submit the backlog
#1410
-
Email the feedback
#1411
-
Call the contract
#1412
-
Schedule the draft
#1413
-
Book the team
#1414
-
Email the feedback
#1415
-
Research the deliverables
#1416
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": 1393,
"todoListId": 120,
"title": "Send the dashboard",
"isDone": true,
"dueDate": "2026-06-13",
"completedAt": "2026-02-03T13:31:01.822Z",
"createdAt": "2025-11-26T05:46:52.320Z",
"updatedAt": "2026-04-08T03:26:24.159Z"
},
{
"id": 1394,
"todoListId": 120,
"title": "Complete the budget",
"isDone": true,
"dueDate": "2026-06-03",
"completedAt": "2026-02-02T15:15:02.587Z",
"createdAt": "2025-08-13T17:51:46.033Z",
"updatedAt": "2025-08-31T08:01:09.825Z"
},
{
"id": 1395,
"todoListId": 120,
"title": "Submit the invoice",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-06-16T01:13:25.837Z",
"updatedAt": "2025-08-15T02:21:40.803Z"
}
],
"meta": {
"page": 59,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=59&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=60&limit=24",
"prev": "/api/v1/todos?page=58&limit=24"
}
}