todos
todos
Page 37 of 126.
Overview
-
Complete the report
#865
-
Complete the invoice
#866
-
Send the budget
#867
-
Call the report
#868
-
Research meeting notes
#869
-
Send the timeline
#870
-
Send the draft
#871
-
Check the report
#872
-
Prepare the vendor
#873
-
Finish the team
#874
-
Plan the documentation
#875
-
Fix the invoice
#876
-
Write the timeline
#877
-
Update the contract
#878
-
Send the presentation
#879
-
Update the design
#880
-
Write the proposal
#881
-
Prepare the draft
#882
-
Research the vendor
#883
-
Update the checklist
#884
-
Email the presentation
#885
-
Fix the documentation
#886
-
Plan the report
#887
-
Fix the dashboard
#888
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": 865,
"todoListId": 72,
"title": "Complete the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-12-12T04:47:45.061Z",
"updatedAt": "2026-02-16T17:49:59.087Z"
},
{
"id": 866,
"todoListId": 73,
"title": "Complete the invoice",
"isDone": false,
"dueDate": "2026-05-29",
"completedAt": null,
"createdAt": "2026-05-16T04:31:11.480Z",
"updatedAt": "2026-05-16T08:33:10.296Z"
},
{
"id": 867,
"todoListId": 73,
"title": "Send the budget",
"isDone": true,
"dueDate": null,
"completedAt": "2026-04-21T07:02:42.430Z",
"createdAt": "2026-02-27T02:32:39.523Z",
"updatedAt": "2026-03-14T21:24:53.731Z"
}
],
"meta": {
"page": 37,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=37&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=38&limit=24",
"prev": "/api/v1/todos?page=36&limit=24"
}
}