todos
todos
Page 80 of 126.
Overview
-
Finish the vendor
#1897
-
Organize the report
#1898
-
Submit the vendor
#1899
-
Complete the deliverables
#1900
-
Write the presentation
#1901
-
Finish the client
#1902
-
Send the checklist
#1903
-
Schedule the tickets
#1904
-
Book the proposal
#1905
-
Research the contract
#1906
-
Write the proposal
#1907
-
Email the design
#1908
-
Submit the draft
#1909
-
Organize meeting notes
#1910
-
Fix the timeline
#1911
-
Write the vendor
#1912
-
Complete the budget
#1913
-
Finish the contract
#1914
-
Schedule the budget
#1915
-
Follow up with the feedback
#1916
-
Submit the budget
#1917
-
Complete the dashboard
#1918
-
Fix the budget
#1919
-
Prepare the report
#1920
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": 1897,
"todoListId": 158,
"title": "Finish the vendor",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-20T12:14:25.417Z",
"createdAt": "2025-12-03T10:02:27.630Z",
"updatedAt": "2026-02-23T07:17:05.142Z"
},
{
"id": 1898,
"todoListId": 158,
"title": "Organize the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-04-15T10:27:20.632Z",
"updatedAt": "2026-04-17T17:11:56.525Z"
},
{
"id": 1899,
"todoListId": 158,
"title": "Submit the vendor",
"isDone": true,
"dueDate": "2026-06-17",
"completedAt": "2026-04-21T23:54:18.878Z",
"createdAt": "2026-02-08T03:27:07.848Z",
"updatedAt": "2026-03-31T20:44:49.395Z"
}
],
"meta": {
"page": 80,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=80&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=81&limit=24",
"prev": "/api/v1/todos?page=79&limit=24"
}
}