todo-lists
todo-lists
Page 4 of 10.
- todo-lists/73
- todo-lists/74
- todo-lists/75
- todo-lists/76
- todo-lists/77
- todo-lists/78
- todo-lists/79
- todo-lists/80
- todo-lists/81
- todo-lists/82
- todo-lists/83
- todo-lists/84
- todo-lists/85
- todo-lists/86
- todo-lists/87
- todo-lists/88
- todo-lists/89
- todo-lists/90
- todo-lists/91
- todo-lists/92
- todo-lists/93
- todo-lists/94
- todo-lists/95
- todo-lists/96
-
Work Tasks
#73
-
Personal Goals
#74
-
Weekly Priorities
#75
-
Fitness Goals
#76
-
Ideas
#77
-
Work Tasks
#78
-
Fitness Goals
#79
-
Personal Goals
#80
-
Learning Objectives
#81
-
Shopping List
#82
-
Shopping List
#83
-
Meeting Notes
#84
-
Meeting Notes
#85
-
Ideas
#86
-
Personal Goals
#87
-
Learning Objectives
#88
-
Ideas
#89
-
Follow-ups
#90
-
Long-term Goals
#91
-
Backlog
#92
-
Learning Objectives
#93
-
Follow-ups
#94
-
Books to Read
#95
-
Weekly Priorities
#96
- userId
-
Lamont Huel @lamont.huel
- name
- Work Tasks
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Virginie O'Connell @virginie.oconnell55
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Virginie O'Connell @virginie.oconnell55
- name
- Weekly Priorities
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Florencio Mohr @florencio_mohr
- name
- Fitness Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Ike Breitenberg @ike.breitenberg
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Ike Breitenberg @ike.breitenberg
- name
- Work Tasks
- 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": 73,
"userId": 69,
"name": "Work Tasks",
"isArchived": false,
"createdAt": "2026-05-10T18:38:23.881Z",
"updatedAt": "2026-05-13T06:49:14.917Z"
},
{
"id": 74,
"userId": 70,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2026-04-12T15:29:24.738Z",
"updatedAt": "2026-05-14T02:52:48.682Z"
},
{
"id": 75,
"userId": 70,
"name": "Weekly Priorities",
"isArchived": false,
"createdAt": "2025-06-16T11:17:08.281Z",
"updatedAt": "2025-09-27T19:52:21.145Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=4",
"next": "/api/v1/todo-lists?page=5",
"prev": "/api/v1/todo-lists?page=3"
}
}