todo-lists
todo-lists
Page 5 of 10.
- todo-lists/97
- todo-lists/98
- todo-lists/99
- todo-lists/100
- todo-lists/101
- todo-lists/102
- todo-lists/103
- todo-lists/104
- todo-lists/105
- todo-lists/106
- todo-lists/107
- todo-lists/108
- todo-lists/109
- todo-lists/110
- todo-lists/111
- todo-lists/112
- todo-lists/113
- todo-lists/114
- todo-lists/115
- todo-lists/116
- todo-lists/117
- todo-lists/118
- todo-lists/119
- todo-lists/120
-
Follow-ups
#97
-
Meeting Notes
#98
-
Home Projects
#99
-
Learning Objectives
#100
-
Books to Read
#101
-
Personal Goals
#102
-
Errands
#103
-
Books to Read
#104
-
Travel Plans
#105
-
Work Tasks
#106
-
Backlog
#107
-
Home Projects
#108
-
Meeting Notes
#109
-
Home Projects
#110
-
Ideas
#111
-
Travel Plans
#112
-
Shopping List
#113
-
Follow-ups
#114
-
Travel Plans
#115
-
Errands
#116
-
Long-term Goals
#117
-
Meeting Notes
#118
-
Learning Objectives
#119
-
Books to Read
#120
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Follow-ups
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Lazaro Rath @lazaro.rath42
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Lazaro Rath @lazaro.rath42
- name
- Home Projects
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Learning Objectives
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Books to Read
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- name
- Personal 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": 97,
"userId": 98,
"name": "Follow-ups",
"isArchived": false,
"createdAt": "2026-05-15T13:23:35.987Z",
"updatedAt": "2026-05-18T15:58:46.703Z"
},
{
"id": 98,
"userId": 102,
"name": "Meeting Notes",
"isArchived": false,
"createdAt": "2026-05-21T14:15:49.443Z",
"updatedAt": "2026-05-21T19:35:04.349Z"
},
{
"id": 99,
"userId": 102,
"name": "Home Projects",
"isArchived": false,
"createdAt": "2026-04-14T01:16:57.481Z",
"updatedAt": "2026-04-21T06:15:27.715Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=5",
"next": "/api/v1/todo-lists?page=6",
"prev": "/api/v1/todo-lists?page=4"
}
}