todos
todos
Page 43 of 126.
Overview
-
Update the backlog
#1009
-
Follow up with the client
#1010
-
Call the design
#1011
-
Call the presentation
#1012
-
Research the dashboard
#1013
-
Prepare the draft
#1014
-
Book the documentation
#1015
-
Follow up with the checklist
#1016
-
Call the presentation
#1017
-
Check the design
#1018
-
Check the timeline
#1019
-
Submit the vendor
#1020
-
Call the team
#1021
-
Send the design
#1022
-
Book the feedback
#1023
-
Prepare the feedback
#1024
-
Review the vendor
#1025
-
Call the tickets
#1026
-
Update the invoice
#1027
-
Check the backlog
#1028
-
Book the deliverables
#1029
-
Schedule the backlog
#1030
-
Schedule the contract
#1031
-
Check the tickets
#1032
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": 1009,
"todoListId": 84,
"title": "Update the backlog",
"isDone": false,
"dueDate": "2026-05-21",
"completedAt": null,
"createdAt": "2026-01-06T09:46:34.273Z",
"updatedAt": "2026-05-17T05:47:51.966Z"
},
{
"id": 1010,
"todoListId": 85,
"title": "Follow up with the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-15T04:52:56.144Z",
"updatedAt": "2026-02-07T00:56:24.673Z"
},
{
"id": 1011,
"todoListId": 85,
"title": "Call the design",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-25T02:52:13.259Z",
"updatedAt": "2025-12-21T08:35:14.754Z"
}
],
"meta": {
"page": 43,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=43&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=44&limit=24",
"prev": "/api/v1/todos?page=42&limit=24"
}
}