todos
todos
Page 6 of 10.
-
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
- todoListId
- todo-lists/10
- title
- Write the presentation
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/10
- title
- Read the budget
- isDone
- false
- dueDate
- 2026-05-26
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/10
- title
- Book meeting notes
- isDone
- false
- dueDate
- 2026-06-06
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/10
- title
- Submit the contract
- isDone
- false
- dueDate
- 2026-06-14
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/11
- title
- Complete the draft
- isDone
- false
- dueDate
- 2026-06-17
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/11
- title
- Plan the tickets
- isDone
- false
- dueDate
- 2026-05-19
- 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": 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",
"next": "/api/v1/todos?page=7",
"prev": "/api/v1/todos?page=5"
}
}