todo-lists
todo-lists
Page 10 of 11.
Overview
-
Work Tasks
#217
-
Backlog
#218
-
Books to Read
#219
-
Ideas
#220
-
Fitness Goals
#221
-
Travel Plans
#222
-
Follow-ups
#223
-
Books to Read
#224
-
Travel Plans
#225
-
Personal Goals
#226
-
Meeting Notes
#227
-
Long-term Goals
#228
-
Errands
#229
-
Backlog
#230
-
Work Tasks
#231
-
Follow-ups
#232
-
Learning Objectives
#233
-
Books to Read
#234
-
Personal Goals
#235
-
Fitness Goals
#236
-
Home Projects
#237
-
Books to Read
#238
-
Follow-ups
#239
-
Shopping List
#240
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": 217,
"userId": 217,
"name": "Work Tasks",
"isArchived": false,
"createdAt": "2025-12-17T05:23:27.762Z",
"updatedAt": "2026-04-13T20:27:38.149Z"
},
{
"id": 218,
"userId": 217,
"name": "Backlog",
"isArchived": false,
"createdAt": "2026-04-13T02:32:29.383Z",
"updatedAt": "2026-04-28T16:07:07.206Z"
},
{
"id": 219,
"userId": 219,
"name": "Books to Read",
"isArchived": false,
"createdAt": "2025-12-28T22:16:58.886Z",
"updatedAt": "2026-04-12T09:50:12.193Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=10&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=11&limit=24",
"prev": "/api/v1/todo-lists?page=9&limit=24"
}
}