todos
todos
Page 39 of 126.
Overview
-
Plan the invoice
#913
-
Organize the draft
#914
-
Write the team
#915
-
Follow up with the checklist
#916
-
Read the vendor
#917
-
Write the backlog
#918
-
Organize the timeline
#919
-
Complete the timeline
#920
-
Plan the draft
#921
-
Prepare the contract
#922
-
Schedule meeting notes
#923
-
Follow up with meeting notes
#924
-
Submit the backlog
#925
-
Complete the contract
#926
-
Read the deliverables
#927
-
Schedule the contract
#928
-
Finish the design
#929
-
Send meeting notes
#930
-
Write the timeline
#931
-
Finish the tickets
#932
-
Read the team
#933
-
Check the presentation
#934
-
Finish the feedback
#935
-
Book the tickets
#936
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": 913,
"todoListId": 77,
"title": "Plan the invoice",
"isDone": true,
"dueDate": "2026-06-13",
"completedAt": "2026-04-27T07:50:09.870Z",
"createdAt": "2025-12-26T01:25:28.874Z",
"updatedAt": "2026-02-07T21:59:32.640Z"
},
{
"id": 914,
"todoListId": 77,
"title": "Organize the draft",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-05-22T16:05:49.841Z",
"updatedAt": "2026-01-08T09:14:29.944Z"
},
{
"id": 915,
"todoListId": 77,
"title": "Write the team",
"isDone": true,
"dueDate": "2026-05-19",
"completedAt": "2026-05-09T02:14:57.858Z",
"createdAt": "2025-10-10T03:07:17.856Z",
"updatedAt": "2025-11-13T00:29:07.920Z"
}
],
"meta": {
"page": 39,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=39&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=40&limit=24",
"prev": "/api/v1/todos?page=38&limit=24"
}
}