todo-lists
todo-lists
Page 9 of 11.
Overview
-
Ideas
#193
-
Shopping List
#194
-
Weekly Priorities
#195
-
Work Tasks
#196
-
Meeting Notes
#197
-
Ideas
#198
-
Meeting Notes
#199
-
Shopping List
#200
-
Learning Objectives
#201
-
Meeting Notes
#202
-
Home Projects
#203
-
Meeting Notes
#204
-
Meeting Notes
#205
-
Long-term Goals
#206
-
Ideas
#207
-
Home Projects
#208
-
Weekly Priorities
#209
-
Ideas
#210
-
Travel Plans
#211
-
Books to Read
#212
-
Meeting Notes
#213
-
Home Projects
#214
-
Shopping List
#215
-
Follow-ups
#216
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todo-lists?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/todo-lists.d.ts https://example-data.com/types/todo-lists.d.ts
import type { TodoList, ListEnvelope } from "./types/todo-lists";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TodoList>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 193,
"userId": 191,
"name": "Ideas",
"isArchived": false,
"createdAt": "2025-10-04T15:21:36.852Z",
"updatedAt": "2025-11-05T17:49:35.477Z"
},
{
"id": 194,
"userId": 193,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2025-08-12T00:28:29.053Z",
"updatedAt": "2025-10-18T04:49:49.766Z"
},
{
"id": 195,
"userId": 194,
"name": "Weekly Priorities",
"isArchived": false,
"createdAt": "2025-09-30T21:15:57.563Z",
"updatedAt": "2025-12-01T10:24:32.397Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=9&limit=24",
"first": "/api/v1/todo-lists?page=1&limit=24",
"last": "/api/v1/todo-lists?page=11&limit=24",
"next": "/api/v1/todo-lists?page=10&limit=24",
"prev": "/api/v1/todo-lists?page=8&limit=24"
}
}