todo-lists
todo-lists
Page 3 of 10.
- todo-lists/49
- todo-lists/50
- todo-lists/51
- todo-lists/52
- todo-lists/53
- todo-lists/54
- todo-lists/55
- todo-lists/56
- todo-lists/57
- todo-lists/58
- todo-lists/59
- todo-lists/60
- todo-lists/61
- todo-lists/62
- todo-lists/63
- todo-lists/64
- todo-lists/65
- todo-lists/66
- todo-lists/67
- todo-lists/68
- todo-lists/69
- todo-lists/70
- todo-lists/71
- todo-lists/72
-
Personal Goals
#49
-
Backlog
#50
-
Learning Objectives
#51
-
Personal Goals
#52
-
Work Tasks
#53
-
Travel Plans
#54
-
Travel Plans
#55
-
Errands
#56
-
Backlog
#57
-
Travel Plans
#58
-
Work Tasks
#59
-
Personal Goals
#60
-
Shopping List
#61
-
Weekly Priorities
#62
-
Personal Goals
#63
-
Fitness Goals
#64
-
Long-term Goals
#65
-
Personal Goals
#66
-
Errands
#67
-
Follow-ups
#68
-
Errands
#69
-
Fitness Goals
#70
-
Follow-ups
#71
-
Learning Objectives
#72
- userId
-
Trace Witting-Stamm @trace_witting-stamm17
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Lamar Wilkinson @lamar_wilkinson43
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Everett Yundt @everett_yundt11
- name
- Learning Objectives
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Myrtie Daniel @myrtie_daniel33
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Lacy Gusikowski @lacy.gusikowski
- name
- Work Tasks
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Lacy Gusikowski @lacy.gusikowski
- name
- Travel Plans
- isArchived
- false
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/todo-lists?limit=25"const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = await res.json();import type { TodoList, ListEnvelope } from "https://example-data.com/types/todo-lists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TodoList>;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 49,
"userId": 42,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2025-09-07T14:04:50.124Z",
"updatedAt": "2026-05-16T14:39:44.525Z"
},
{
"id": 50,
"userId": 43,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-08-22T11:31:49.377Z",
"updatedAt": "2025-12-12T20:42:10.795Z"
},
{
"id": 51,
"userId": 44,
"name": "Learning Objectives",
"isArchived": false,
"createdAt": "2025-12-21T06:24:24.263Z",
"updatedAt": "2026-02-12T20:49:51.954Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=3",
"next": "/api/v1/todo-lists?page=4",
"prev": "/api/v1/todo-lists?page=2"
}
}