todos
todos
Page 110 of 126.
Overview
-
Follow up with the tickets
#2617
-
Plan the backlog
#2618
-
Call the report
#2619
-
Schedule the proposal
#2620
-
Review the deliverables
#2621
-
Review the dashboard
#2622
-
Check the documentation
#2623
-
Update the tickets
#2624
-
Prepare the documentation
#2625
-
Send the proposal
#2626
-
Prepare the tickets
#2627
-
Call the team
#2628
-
Update meeting notes
#2629
-
Read the backlog
#2630
-
Buy the contract
#2631
-
Call the report
#2632
-
Research the documentation
#2633
-
Buy the checklist
#2634
-
Complete the presentation
#2635
-
Email meeting notes
#2636
-
Read the documentation
#2637
-
Fix the contract
#2638
-
Submit the client
#2639
-
Fix the documentation
#2640
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": 2617,
"todoListId": 220,
"title": "Follow up with the tickets",
"isDone": true,
"dueDate": "2026-06-07",
"completedAt": "2025-08-12T01:47:49.610Z",
"createdAt": "2025-07-11T09:55:36.135Z",
"updatedAt": "2025-10-22T14:42:40.709Z"
},
{
"id": 2618,
"todoListId": 221,
"title": "Plan the backlog",
"isDone": false,
"dueDate": "2026-05-29",
"completedAt": null,
"createdAt": "2025-05-30T19:02:26.971Z",
"updatedAt": "2026-03-23T23:43:03.504Z"
},
{
"id": 2619,
"todoListId": 221,
"title": "Call the report",
"isDone": true,
"dueDate": "2026-06-17",
"completedAt": "2026-02-24T22:48:49.098Z",
"createdAt": "2025-12-28T11:19:37.364Z",
"updatedAt": "2026-05-05T19:19:12.872Z"
}
],
"meta": {
"page": 110,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=110&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=111&limit=24",
"prev": "/api/v1/todos?page=109&limit=24"
}
}