todos
todos
Page 125 of 126.
Overview
-
Follow up with the proposal
#2977
-
Write the design
#2978
-
Write the report
#2979
-
Check the feedback
#2980
-
Schedule the presentation
#2981
-
Prepare the budget
#2982
-
Plan the budget
#2983
-
Follow up with the tickets
#2984
-
Read the timeline
#2985
-
Update the dashboard
#2986
-
Check the presentation
#2987
-
Call the dashboard
#2988
-
Complete the tickets
#2989
-
Buy the report
#2990
-
Buy meeting notes
#2991
-
Send the checklist
#2992
-
Organize the report
#2993
-
Review the documentation
#2994
-
Complete the deliverables
#2995
-
Fix the deliverables
#2996
-
Submit the timeline
#2997
-
Finish meeting notes
#2998
-
Schedule the vendor
#2999
-
Organize the backlog
#3000
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": 2977,
"todoListId": 248,
"title": "Follow up with the proposal",
"isDone": false,
"dueDate": "2026-05-29",
"completedAt": null,
"createdAt": "2026-03-11T08:55:57.416Z",
"updatedAt": "2026-04-28T21:06:04.209Z"
},
{
"id": 2978,
"todoListId": 248,
"title": "Write the design",
"isDone": false,
"dueDate": "2026-06-05",
"completedAt": null,
"createdAt": "2025-10-17T16:51:23.752Z",
"updatedAt": "2025-10-29T19:23:30.910Z"
},
{
"id": 2979,
"todoListId": 248,
"title": "Write the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-05-08T01:58:42.024Z",
"updatedAt": "2026-05-11T11:44:47.640Z"
}
],
"meta": {
"page": 125,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=125&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=126&limit=24",
"prev": "/api/v1/todos?page=124&limit=24"
}
}