todo-lists
todo-lists
Page 9 of 10.
- todo-lists/193
- todo-lists/194
- todo-lists/195
- todo-lists/196
- todo-lists/197
- todo-lists/198
- todo-lists/199
- todo-lists/200
- todo-lists/201
- todo-lists/202
- todo-lists/203
- todo-lists/204
- todo-lists/205
- todo-lists/206
- todo-lists/207
- todo-lists/208
- todo-lists/209
- todo-lists/210
- todo-lists/211
- todo-lists/212
- todo-lists/213
- todo-lists/214
- todo-lists/215
- todo-lists/216
-
Ideas
#193
-
Shopping List
#194
-
Weekly Priorities
#195
-
Work Tasks
#196
-
Meeting Notes
#197
-
Ideas
#198
-
Meeting Notes
#199
-
Shopping List
#200
-
Learning Objectives
#201
-
Meeting Notes
#202
-
Home Projects
#203
-
Meeting Notes
#204
-
Meeting Notes
#205
-
Long-term Goals
#206
-
Ideas
#207
-
Home Projects
#208
-
Weekly Priorities
#209
-
Ideas
#210
-
Travel Plans
#211
-
Books to Read
#212
-
Meeting Notes
#213
-
Home Projects
#214
-
Shopping List
#215
-
Follow-ups
#216
- userId
-
Rosemary Krajcik @rosemary_krajcik
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Selina Flatley @selina_flatley
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Oliver Mitchell @oliver_mitchell50
- name
- Weekly Priorities
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Oliver Mitchell @oliver_mitchell50
- name
- Work Tasks
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Joseph Nitzsche @joseph_nitzsche
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Joseph Nitzsche @joseph_nitzsche
- name
- Ideas
- 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": 193,
"userId": 191,
"name": "Ideas",
"isArchived": false,
"createdAt": "2025-10-04T15:21:36.852Z",
"updatedAt": "2025-11-05T17:49:35.477Z"
},
{
"id": 194,
"userId": 193,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2025-08-12T00:28:29.053Z",
"updatedAt": "2025-10-18T04:49:49.766Z"
},
{
"id": 195,
"userId": 194,
"name": "Weekly Priorities",
"isArchived": false,
"createdAt": "2025-09-30T21:15:57.563Z",
"updatedAt": "2025-12-01T10:24:32.397Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=9",
"next": "/api/v1/todo-lists?page=10",
"prev": "/api/v1/todo-lists?page=8"
}
}