todos
todos
Page 21 of 126.
Overview
-
Organize the documentation
#481
-
Organize the backlog
#482
-
Call the team
#483
-
Buy the invoice
#484
-
Send the backlog
#485
-
Call the presentation
#486
-
Complete the deliverables
#487
-
Write the client
#488
-
Fix the deliverables
#489
-
Check the backlog
#490
-
Review the proposal
#491
-
Check the checklist
#492
-
Finish the presentation
#493
-
Call the design
#494
-
Complete the dashboard
#495
-
Submit the team
#496
-
Finish the budget
#497
-
Submit the deliverables
#498
-
Update the proposal
#499
-
Check the design
#500
-
Buy the team
#501
-
Email the vendor
#502
-
Check the draft
#503
-
Organize the backlog
#504
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": 481,
"todoListId": 42,
"title": "Organize the documentation",
"isDone": true,
"dueDate": null,
"completedAt": "2025-10-15T02:29:27.776Z",
"createdAt": "2025-08-06T12:16:43.700Z",
"updatedAt": "2026-05-15T04:27:47.863Z"
},
{
"id": 482,
"todoListId": 42,
"title": "Organize the backlog",
"isDone": false,
"dueDate": "2026-05-29",
"completedAt": null,
"createdAt": "2025-08-22T14:21:18.513Z",
"updatedAt": "2026-04-18T13:24:27.465Z"
},
{
"id": 483,
"todoListId": 42,
"title": "Call the team",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-02-10T00:50:09.949Z",
"updatedAt": "2026-04-29T03:25:34.053Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=21&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=22&limit=24",
"prev": "/api/v1/todos?page=20&limit=24"
}
}