todos
todos
Page 10 of 10.
-
Research the presentation
#217
-
Organize the proposal
#218
-
Review the documentation
#219
-
Write the dashboard
#220
-
Schedule the invoice
#221
-
Submit the vendor
#222
-
Review the timeline
#223
-
Review the draft
#224
-
Organize meeting notes
#225
-
Book the budget
#226
-
Call the feedback
#227
-
Update the design
#228
-
Read the dashboard
#229
-
Prepare the vendor
#230
-
Read the deliverables
#231
-
Book the vendor
#232
-
Organize meeting notes
#233
-
Research the client
#234
-
Write the contract
#235
-
Submit the feedback
#236
-
Plan the contract
#237
-
Follow up with the tickets
#238
-
Review the team
#239
-
Email the draft
#240
- todoListId
- todo-lists/18
- title
- Research the presentation
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/18
- title
- Organize the proposal
- isDone
- true
- dueDate
- 2026-05-20
- completedAt
- createdAt
- updatedAt
- todoListId
- todo-lists/18
- title
- Review the documentation
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/18
- title
- Write the dashboard
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
- todoListId
- todo-lists/18
- title
- Schedule the invoice
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/18
- title
- Submit the vendor
- isDone
- true
- dueDate
- 2026-06-18
- completedAt
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/todos?limit=25"const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = await res.json();import type { Todo, ListEnvelope } from "https://example-data.com/types/todos.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Todo>;import requests
res = requests.get(
"https://example-data.com/api/v1/todos",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 217,
"todoListId": 18,
"title": "Research the presentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-02-21T01:00:57.211Z",
"updatedAt": "2026-05-19T09:59:16.610Z"
},
{
"id": 218,
"todoListId": 18,
"title": "Organize the proposal",
"isDone": true,
"dueDate": "2026-05-20",
"completedAt": "2025-11-08T11:54:30.870Z",
"createdAt": "2025-09-24T09:40:35.929Z",
"updatedAt": "2026-02-12T19:09:52.008Z"
},
{
"id": 219,
"todoListId": 18,
"title": "Review the documentation",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-09-14T20:56:38.153Z",
"updatedAt": "2025-10-15T15:01:11.902Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=10",
"next": "/api/v1/todos?page=11",
"prev": "/api/v1/todos?page=9"
}
}