todo-lists
todo-lists
Page 6 of 10.
- todo-lists/121
- todo-lists/122
- todo-lists/123
- todo-lists/124
- todo-lists/125
- todo-lists/126
- todo-lists/127
- todo-lists/128
- todo-lists/129
- todo-lists/130
- todo-lists/131
- todo-lists/132
- todo-lists/133
- todo-lists/134
- todo-lists/135
- todo-lists/136
- todo-lists/137
- todo-lists/138
- todo-lists/139
- todo-lists/140
- todo-lists/141
- todo-lists/142
- todo-lists/143
- todo-lists/144
-
Follow-ups
#121
-
Personal Goals
#122
-
Weekly Priorities
#123
-
Personal Goals
#124
-
Backlog
#125
-
Fitness Goals
#126
-
Backlog
#127
-
Errands
#128
-
Weekly Priorities
#129
-
Shopping List
#130
-
Shopping List
#131
-
Learning Objectives
#132
-
Personal Goals
#133
-
Follow-ups
#134
-
Weekly Priorities
#135
-
Meeting Notes
#136
-
Personal Goals
#137
-
Home Projects
#138
-
Learning Objectives
#139
-
Home Projects
#140
-
Home Projects
#141
-
Fitness Goals
#142
-
Backlog
#143
-
Travel Plans
#144
- userId
-
Telly Sanford @telly.sanford
- name
- Follow-ups
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Telly Sanford @telly.sanford
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Aaron Fritsch @aaron.fritsch
- name
- Weekly Priorities
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Aaron Fritsch @aaron.fritsch
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Diana Murazik @diana.murazik31
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Gerda Streich @gerda_streich
- name
- Fitness Goals
- 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": 121,
"userId": 123,
"name": "Follow-ups",
"isArchived": false,
"createdAt": "2025-09-29T00:08:19.736Z",
"updatedAt": "2026-03-19T09:31:45.670Z"
},
{
"id": 122,
"userId": 123,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2025-07-10T11:43:33.240Z",
"updatedAt": "2026-05-14T15:14:37.876Z"
},
{
"id": 123,
"userId": 124,
"name": "Weekly Priorities",
"isArchived": true,
"createdAt": "2026-04-09T23:58:54.741Z",
"updatedAt": "2026-04-12T15:15:21.719Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=6",
"next": "/api/v1/todo-lists?page=7",
"prev": "/api/v1/todo-lists?page=5"
}
}