todo-lists
todo-lists
Page 2 of 10.
- todo-lists/25
- todo-lists/26
- todo-lists/27
- todo-lists/28
- todo-lists/29
- todo-lists/30
- todo-lists/31
- todo-lists/32
- todo-lists/33
- todo-lists/34
- todo-lists/35
- todo-lists/36
- todo-lists/37
- todo-lists/38
- todo-lists/39
- todo-lists/40
- todo-lists/41
- todo-lists/42
- todo-lists/43
- todo-lists/44
- todo-lists/45
- todo-lists/46
- todo-lists/47
- todo-lists/48
-
Backlog
#25
-
Books to Read
#26
-
Personal Goals
#27
-
Home Projects
#28
-
Backlog
#29
-
Meeting Notes
#30
-
Home Projects
#31
-
Work Tasks
#32
-
Books to Read
#33
-
Home Projects
#34
-
Ideas
#35
-
Fitness Goals
#36
-
Personal Goals
#37
-
Books to Read
#38
-
Personal Goals
#39
-
Personal Goals
#40
-
Shopping List
#41
-
Meeting Notes
#42
-
Long-term Goals
#43
-
Work Tasks
#44
-
Backlog
#45
-
Home Projects
#46
-
Weekly Priorities
#47
-
Follow-ups
#48
- userId
-
Celia D'Amore @celia_damore
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Celia D'Amore @celia_damore
- name
- Books to Read
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Queen Lubowitz @queen.lubowitz76
- name
- Home Projects
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Queen Lubowitz @queen.lubowitz76
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Izaiah Rempel @izaiah_rempel
- name
- Meeting Notes
- 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": 25,
"userId": 24,
"name": "Backlog",
"isArchived": false,
"createdAt": "2026-04-10T11:57:28.352Z",
"updatedAt": "2026-05-07T16:09:12.245Z"
},
{
"id": 26,
"userId": 24,
"name": "Books to Read",
"isArchived": false,
"createdAt": "2026-03-27T16:31:39.814Z",
"updatedAt": "2026-05-04T17:41:14.362Z"
},
{
"id": 27,
"userId": 25,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2026-04-18T05:07:19.232Z",
"updatedAt": "2026-04-21T13:15:48.364Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=2",
"next": "/api/v1/todo-lists?page=3",
"prev": "/api/v1/todo-lists?page=1"
}
}