todo-lists
todo-lists
Page 8 of 11.
Overview
-
Follow-ups
#169
-
Travel Plans
#170
-
Weekly Priorities
#171
-
Long-term Goals
#172
-
Long-term Goals
#173
-
Ideas
#174
-
Ideas
#175
-
Backlog
#176
-
Books to Read
#177
-
Travel Plans
#178
-
Home Projects
#179
-
Long-term Goals
#180
-
Shopping List
#181
-
Books to Read
#182
-
Shopping List
#183
-
Fitness Goals
#184
-
Personal Goals
#185
-
Books to Read
#186
-
Personal Goals
#187
-
Errands
#188
-
Shopping List
#189
-
Follow-ups
#190
-
Books to Read
#191
-
Travel Plans
#192
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": 169,
"userId": 169,
"name": "Follow-ups",
"isArchived": false,
"createdAt": "2026-02-10T01:07:05.547Z",
"updatedAt": "2026-03-18T05:56:13.270Z"
},
{
"id": 170,
"userId": 170,
"name": "Travel Plans",
"isArchived": false,
"createdAt": "2025-11-13T22:56:33.392Z",
"updatedAt": "2025-11-19T05:52:01.218Z"
},
{
"id": 171,
"userId": 170,
"name": "Weekly Priorities",
"isArchived": true,
"createdAt": "2025-06-25T17:29:05.122Z",
"updatedAt": "2026-04-07T04:20:58.572Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=8&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=9&limit=24",
"prev": "/api/v1/todo-lists?page=7&limit=24"
}
}