todos
todos
Page 8 of 10.
-
Submit the team
#169
-
Finish the draft
#170
-
Follow up with the tickets
#171
-
Complete the vendor
#172
-
Read the dashboard
#173
-
Follow up with the invoice
#174
-
Complete the vendor
#175
-
Organize meeting notes
#176
-
Check the checklist
#177
-
Review the tickets
#178
-
Complete the checklist
#179
-
Organize the proposal
#180
-
Write the vendor
#181
-
Update the proposal
#182
-
Fix the vendor
#183
-
Check the proposal
#184
-
Write the vendor
#185
-
Follow up with the feedback
#186
-
Complete the draft
#187
-
Book meeting notes
#188
-
Schedule meeting notes
#189
-
Buy the documentation
#190
-
Check the feedback
#191
-
Book the checklist
#192
- todoListId
- todo-lists/14
- title
- Submit the team
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/14
- title
- Finish the draft
- isDone
- false
- dueDate
- 2026-06-11
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/14
- title
- Follow up with the tickets
- isDone
- false
- dueDate
- 2026-05-26
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/14
- title
- Complete the vendor
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
- todoListId
- todo-lists/14
- title
- Read the dashboard
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
- todoListId
- todo-lists/14
- title
- Follow up with the invoice
- isDone
- true
- dueDate
- 2026-06-12
- 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": 169,
"todoListId": 14,
"title": "Submit the team",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-05-30T01:50:12.145Z",
"updatedAt": "2025-09-19T06:05:23.407Z"
},
{
"id": 170,
"todoListId": 14,
"title": "Finish the draft",
"isDone": false,
"dueDate": "2026-06-11",
"completedAt": null,
"createdAt": "2026-04-27T05:07:23.742Z",
"updatedAt": "2026-05-03T05:15:12.832Z"
},
{
"id": 171,
"todoListId": 14,
"title": "Follow up with the tickets",
"isDone": false,
"dueDate": "2026-05-26",
"completedAt": null,
"createdAt": "2025-09-05T14:47:06.479Z",
"updatedAt": "2026-03-17T02:40:59.651Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=8",
"next": "/api/v1/todos?page=9",
"prev": "/api/v1/todos?page=7"
}
}