todo-lists
todo-lists
Page 10 of 10.
- todo-lists/217
- todo-lists/218
- todo-lists/219
- todo-lists/220
- todo-lists/221
- todo-lists/222
- todo-lists/223
- todo-lists/224
- todo-lists/225
- todo-lists/226
- todo-lists/227
- todo-lists/228
- todo-lists/229
- todo-lists/230
- todo-lists/231
- todo-lists/232
- todo-lists/233
- todo-lists/234
- todo-lists/235
- todo-lists/236
- todo-lists/237
- todo-lists/238
- todo-lists/239
- todo-lists/240
-
Work Tasks
#217
-
Backlog
#218
-
Books to Read
#219
-
Ideas
#220
-
Fitness Goals
#221
-
Travel Plans
#222
-
Follow-ups
#223
-
Books to Read
#224
-
Travel Plans
#225
-
Personal Goals
#226
-
Meeting Notes
#227
-
Long-term Goals
#228
-
Errands
#229
-
Backlog
#230
-
Work Tasks
#231
-
Follow-ups
#232
-
Learning Objectives
#233
-
Books to Read
#234
-
Personal Goals
#235
-
Fitness Goals
#236
-
Home Projects
#237
-
Books to Read
#238
-
Follow-ups
#239
-
Shopping List
#240
- userId
-
Sarah West @sarah.west
- name
- Work Tasks
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Sarah West @sarah.west
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Dasia Volkman @dasia_volkman65
- name
- Books to Read
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Joseph Steuber @joseph_steuber
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Loren Schmidt @loren_schmidt
- name
- Fitness Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Loren Schmidt @loren_schmidt
- 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": 217,
"userId": 217,
"name": "Work Tasks",
"isArchived": false,
"createdAt": "2025-12-17T05:23:27.762Z",
"updatedAt": "2026-04-13T20:27:38.149Z"
},
{
"id": 218,
"userId": 217,
"name": "Backlog",
"isArchived": false,
"createdAt": "2026-04-13T02:32:29.383Z",
"updatedAt": "2026-04-28T16:07:07.206Z"
},
{
"id": 219,
"userId": 219,
"name": "Books to Read",
"isArchived": false,
"createdAt": "2025-12-28T22:16:58.886Z",
"updatedAt": "2026-04-12T09:50:12.193Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=10",
"next": "/api/v1/todo-lists?page=11",
"prev": "/api/v1/todo-lists?page=9"
}
}