todos
todos
Page 2 of 10.
-
Review the client
#25
-
Organize the feedback
#26
-
Call the checklist
#27
-
Prepare the dashboard
#28
-
Write the feedback
#29
-
Call the backlog
#30
-
Plan the vendor
#31
-
Review the contract
#32
-
Follow up with the presentation
#33
-
Check the timeline
#34
-
Prepare the deliverables
#35
-
Read the backlog
#36
-
Write meeting notes
#37
-
Submit the report
#38
-
Finish the proposal
#39
-
Read the documentation
#40
-
Finish the deliverables
#41
-
Send the invoice
#42
-
Send the checklist
#43
-
Research the checklist
#44
-
Schedule the team
#45
-
Organize the feedback
#46
-
Review the budget
#47
-
Read the draft
#48
- todoListId
- todo-lists/2
- title
- Review the client
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/2
- title
- Organize the feedback
- isDone
- false
- dueDate
- 2026-05-31
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/2
- title
- Call the checklist
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/2
- title
- Prepare the dashboard
- isDone
- false
- dueDate
- 2026-06-20
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/2
- title
- Write the feedback
- isDone
- false
- dueDate
- 2026-05-17
- completedAt
- —
- createdAt
- updatedAt
- todoListId
- todo-lists/2
- title
- Call the backlog
- isDone
- true
- dueDate
- —
- 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": 25,
"todoListId": 2,
"title": "Review the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-31T12:33:28.075Z",
"updatedAt": "2026-01-18T16:09:38.037Z"
},
{
"id": 26,
"todoListId": 2,
"title": "Organize the feedback",
"isDone": false,
"dueDate": "2026-05-31",
"completedAt": null,
"createdAt": "2026-02-25T07:21:30.744Z",
"updatedAt": "2026-04-14T12:20:02.321Z"
},
{
"id": 27,
"todoListId": 2,
"title": "Call the checklist",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-09-07T13:58:29.139Z",
"updatedAt": "2025-10-24T09:14:46.517Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=2",
"next": "/api/v1/todos?page=3",
"prev": "/api/v1/todos?page=1"
}
}