todos
todos
Page 35 of 126.
Overview
-
Book the documentation
#817
-
Organize the client
#818
-
Prepare the budget
#819
-
Read the backlog
#820
-
Schedule the draft
#821
-
Review the contract
#822
-
Send the draft
#823
-
Fix meeting notes
#824
-
Check the dashboard
#825
-
Follow up with the report
#826
-
Read the proposal
#827
-
Write the presentation
#828
-
Complete the draft
#829
-
Email the proposal
#830
-
Complete the deliverables
#831
-
Plan the deliverables
#832
-
Complete the presentation
#833
-
Prepare the contract
#834
-
Finish the contract
#835
-
Write the invoice
#836
-
Prepare the vendor
#837
-
Read the client
#838
-
Buy the contract
#839
-
Organize the draft
#840
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": 817,
"todoListId": 69,
"title": "Book the documentation",
"isDone": false,
"dueDate": "2026-05-16",
"completedAt": null,
"createdAt": "2025-09-30T03:02:38.659Z",
"updatedAt": "2025-12-31T06:23:38.957Z"
},
{
"id": 818,
"todoListId": 69,
"title": "Organize the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-06-15T05:33:00.659Z",
"updatedAt": "2026-03-16T00:47:50.938Z"
},
{
"id": 819,
"todoListId": 69,
"title": "Prepare the budget",
"isDone": false,
"dueDate": "2026-06-18",
"completedAt": null,
"createdAt": "2026-01-23T07:32:52.720Z",
"updatedAt": "2026-02-13T11:30:36.550Z"
}
],
"meta": {
"page": 35,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=35&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=36&limit=24",
"prev": "/api/v1/todos?page=34&limit=24"
}
}