todo-lists
todo-lists
Page 7 of 10.
- todo-lists/145
- todo-lists/146
- todo-lists/147
- todo-lists/148
- todo-lists/149
- todo-lists/150
- todo-lists/151
- todo-lists/152
- todo-lists/153
- todo-lists/154
- todo-lists/155
- todo-lists/156
- todo-lists/157
- todo-lists/158
- todo-lists/159
- todo-lists/160
- todo-lists/161
- todo-lists/162
- todo-lists/163
- todo-lists/164
- todo-lists/165
- todo-lists/166
- todo-lists/167
- todo-lists/168
-
Long-term Goals
#145
-
Long-term Goals
#146
-
Ideas
#147
-
Backlog
#148
-
Long-term Goals
#149
-
Weekly Priorities
#150
-
Learning Objectives
#151
-
Learning Objectives
#152
-
Work Tasks
#153
-
Shopping List
#154
-
Shopping List
#155
-
Errands
#156
-
Learning Objectives
#157
-
Errands
#158
-
Books to Read
#159
-
Errands
#160
-
Learning Objectives
#161
-
Learning Objectives
#162
-
Fitness Goals
#163
-
Errands
#164
-
Long-term Goals
#165
-
Fitness Goals
#166
-
Learning Objectives
#167
-
Ideas
#168
- userId
-
Tillman Breitenberg @tillman_breitenberg54
- name
- Long-term Goals
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Douglas Frami @douglas.frami
- name
- Long-term Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Douglas Frami @douglas.frami
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Rickie Sporer @rickie.sporer50
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Rickie Sporer @rickie.sporer50
- name
- Long-term Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Wiley Rodriguez @wiley.rodriguez19
- name
- Weekly Priorities
- isArchived
- true
- 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": 145,
"userId": 145,
"name": "Long-term Goals",
"isArchived": true,
"createdAt": "2026-04-20T05:49:07.021Z",
"updatedAt": "2026-05-21T13:39:01.589Z"
},
{
"id": 146,
"userId": 148,
"name": "Long-term Goals",
"isArchived": false,
"createdAt": "2026-05-13T14:44:18.745Z",
"updatedAt": "2026-05-14T02:29:03.791Z"
},
{
"id": 147,
"userId": 148,
"name": "Ideas",
"isArchived": false,
"createdAt": "2026-04-05T19:52:43.148Z",
"updatedAt": "2026-04-15T23:31:00.686Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=7",
"next": "/api/v1/todo-lists?page=8",
"prev": "/api/v1/todo-lists?page=6"
}
}