todo-lists
todo-lists
Page 5 of 11.
Overview
-
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
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": 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&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=6&limit=24",
"prev": "/api/v1/todo-lists?page=4&limit=24"
}
}