todos
todos
Page 20 of 126.
Overview
-
Check the proposal
#457
-
Follow up with the presentation
#458
-
Organize the design
#459
-
Read the deliverables
#460
-
Buy the invoice
#461
-
Prepare the tickets
#462
-
Finish the draft
#463
-
Research the team
#464
-
Complete the checklist
#465
-
Call the backlog
#466
-
Read the backlog
#467
-
Research the tickets
#468
-
Review the proposal
#469
-
Read the design
#470
-
Update the design
#471
-
Follow up with the report
#472
-
Email the checklist
#473
-
Call the presentation
#474
-
Send the documentation
#475
-
Schedule the contract
#476
-
Book the report
#477
-
Plan meeting notes
#478
-
Complete the vendor
#479
-
Prepare the budget
#480
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": 457,
"todoListId": 40,
"title": "Check the proposal",
"isDone": false,
"dueDate": "2026-06-11",
"completedAt": null,
"createdAt": "2025-07-06T02:11:36.646Z",
"updatedAt": "2025-10-18T06:16:31.437Z"
},
{
"id": 458,
"todoListId": 40,
"title": "Follow up with the presentation",
"isDone": false,
"dueDate": "2026-06-05",
"completedAt": null,
"createdAt": "2026-04-30T06:52:44.225Z",
"updatedAt": "2026-05-19T11:23:40.776Z"
},
{
"id": 459,
"todoListId": 40,
"title": "Organize the design",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-05-31T17:16:59.728Z",
"updatedAt": "2025-12-03T22:46:54.004Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=20&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=21&limit=24",
"prev": "/api/v1/todos?page=19&limit=24"
}
}