todos
todos
Page 40 of 126.
Overview
-
Buy the team
#937
-
Email meeting notes
#938
-
Call the tickets
#939
-
Call the budget
#940
-
Call the deliverables
#941
-
Call the timeline
#942
-
Send the draft
#943
-
Finish the deliverables
#944
-
Review the timeline
#945
-
Submit the design
#946
-
Organize the invoice
#947
-
Write the backlog
#948
-
Read the tickets
#949
-
Submit the presentation
#950
-
Check the design
#951
-
Email the backlog
#952
-
Buy the deliverables
#953
-
Check the feedback
#954
-
Review the tickets
#955
-
Check the vendor
#956
-
Review the vendor
#957
-
Book the vendor
#958
-
Complete the team
#959
-
Book the documentation
#960
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": 937,
"todoListId": 79,
"title": "Buy the team",
"isDone": true,
"dueDate": "2026-06-10",
"completedAt": "2026-04-18T00:01:23.443Z",
"createdAt": "2025-12-10T16:58:20.577Z",
"updatedAt": "2026-04-17T21:57:21.243Z"
},
{
"id": 938,
"todoListId": 79,
"title": "Email meeting notes",
"isDone": true,
"dueDate": null,
"completedAt": "2026-04-03T12:49:52.663Z",
"createdAt": "2025-08-10T22:13:11.349Z",
"updatedAt": "2025-11-21T17:34:18.544Z"
},
{
"id": 939,
"todoListId": 79,
"title": "Call the tickets",
"isDone": true,
"dueDate": null,
"completedAt": "2026-04-13T11:20:38.188Z",
"createdAt": "2026-03-27T23:46:41.641Z",
"updatedAt": "2026-05-12T01:29:38.275Z"
}
],
"meta": {
"page": 40,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=40&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=41&limit=24",
"prev": "/api/v1/todos?page=39&limit=24"
}
}