todos
todos
Page 6 of 126.
Overview
-
Write the presentation
#121
-
Read the budget
#122
-
Book meeting notes
#123
-
Submit the contract
#124
-
Complete the draft
#125
-
Plan the tickets
#126
-
Review the vendor
#127
-
Submit the vendor
#128
-
Research the budget
#129
-
Call the draft
#130
-
Write the invoice
#131
-
Fix the client
#132
-
Finish the client
#133
-
Organize the design
#134
-
Plan the budget
#135
-
Fix the documentation
#136
-
Review the vendor
#137
-
Plan the backlog
#138
-
Update the proposal
#139
-
Submit the invoice
#140
-
Follow up with the feedback
#141
-
Write the feedback
#142
-
Write the contract
#143
-
Email the presentation
#144
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": 121,
"todoListId": 10,
"title": "Write the presentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-09-17T13:49:06.619Z",
"updatedAt": "2025-12-12T01:15:35.752Z"
},
{
"id": 122,
"todoListId": 10,
"title": "Read the budget",
"isDone": false,
"dueDate": "2026-05-26",
"completedAt": null,
"createdAt": "2026-02-22T02:39:42.092Z",
"updatedAt": "2026-05-12T04:25:08.950Z"
},
{
"id": 123,
"todoListId": 10,
"title": "Book meeting notes",
"isDone": false,
"dueDate": "2026-06-06",
"completedAt": null,
"createdAt": "2025-11-29T10:08:24.384Z",
"updatedAt": "2026-03-08T20:29:40.065Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=6&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=7&limit=24",
"prev": "/api/v1/todos?page=5&limit=24"
}
}