todos
todos
Page 104 of 126.
Overview
-
Fix the vendor
#2473
-
Schedule the tickets
#2474
-
Check the design
#2475
-
Write the invoice
#2476
-
Update the timeline
#2477
-
Buy the vendor
#2478
-
Book the client
#2479
-
Schedule the vendor
#2480
-
Update the budget
#2481
-
Update the presentation
#2482
-
Email the proposal
#2483
-
Read the checklist
#2484
-
Call the feedback
#2485
-
Research the client
#2486
-
Plan the team
#2487
-
Update the proposal
#2488
-
Follow up with the backlog
#2489
-
Call the report
#2490
-
Fix the vendor
#2491
-
Review the design
#2492
-
Research the draft
#2493
-
Send the backlog
#2494
-
Complete the design
#2495
-
Read the documentation
#2496
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": 2473,
"todoListId": 210,
"title": "Fix the vendor",
"isDone": false,
"dueDate": "2026-06-06",
"completedAt": null,
"createdAt": "2025-10-02T23:49:41.227Z",
"updatedAt": "2025-11-03T22:44:58.840Z"
},
{
"id": 2474,
"todoListId": 210,
"title": "Schedule the tickets",
"isDone": true,
"dueDate": "2026-05-31",
"completedAt": "2025-08-08T23:12:48.510Z",
"createdAt": "2025-06-18T11:42:23.765Z",
"updatedAt": "2025-10-20T20:16:55.087Z"
},
{
"id": 2475,
"todoListId": 210,
"title": "Check the design",
"isDone": false,
"dueDate": "2026-06-03",
"completedAt": null,
"createdAt": "2026-03-14T12:10:29.740Z",
"updatedAt": "2026-04-07T06:07:17.583Z"
}
],
"meta": {
"page": 104,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=104&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=105&limit=24",
"prev": "/api/v1/todos?page=103&limit=24"
}
}