todo-lists
todo-lists
Page 8 of 10.
- todo-lists/169
- todo-lists/170
- todo-lists/171
- todo-lists/172
- todo-lists/173
- todo-lists/174
- todo-lists/175
- todo-lists/176
- todo-lists/177
- todo-lists/178
- todo-lists/179
- todo-lists/180
- todo-lists/181
- todo-lists/182
- todo-lists/183
- todo-lists/184
- todo-lists/185
- todo-lists/186
- todo-lists/187
- todo-lists/188
- todo-lists/189
- todo-lists/190
- todo-lists/191
- todo-lists/192
-
Follow-ups
#169
-
Travel Plans
#170
-
Weekly Priorities
#171
-
Long-term Goals
#172
-
Long-term Goals
#173
-
Ideas
#174
-
Ideas
#175
-
Backlog
#176
-
Books to Read
#177
-
Travel Plans
#178
-
Home Projects
#179
-
Long-term Goals
#180
-
Shopping List
#181
-
Books to Read
#182
-
Shopping List
#183
-
Fitness Goals
#184
-
Personal Goals
#185
-
Books to Read
#186
-
Personal Goals
#187
-
Errands
#188
-
Shopping List
#189
-
Follow-ups
#190
-
Books to Read
#191
-
Travel Plans
#192
- userId
-
Alexander Beahan @alexander.beahan57
- name
- Follow-ups
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Travel Plans
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Weekly Priorities
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Kaleb Schmidt @kaleb.schmidt
- name
- Long-term Goals
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Long-term Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Perry Kerluke @perry_kerluke83
- name
- Ideas
- 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": 169,
"userId": 169,
"name": "Follow-ups",
"isArchived": false,
"createdAt": "2026-02-10T01:07:05.547Z",
"updatedAt": "2026-03-18T05:56:13.270Z"
},
{
"id": 170,
"userId": 170,
"name": "Travel Plans",
"isArchived": false,
"createdAt": "2025-11-13T22:56:33.392Z",
"updatedAt": "2025-11-19T05:52:01.218Z"
},
{
"id": 171,
"userId": 170,
"name": "Weekly Priorities",
"isArchived": true,
"createdAt": "2025-06-25T17:29:05.122Z",
"updatedAt": "2026-04-07T04:20:58.572Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=8",
"next": "/api/v1/todo-lists?page=9",
"prev": "/api/v1/todo-lists?page=7"
}
}