todo-lists
todo-lists
Page 3 of 11.
Overview
-
Personal Goals
#49
-
Backlog
#50
-
Learning Objectives
#51
-
Personal Goals
#52
-
Work Tasks
#53
-
Travel Plans
#54
-
Travel Plans
#55
-
Errands
#56
-
Backlog
#57
-
Travel Plans
#58
-
Work Tasks
#59
-
Personal Goals
#60
-
Shopping List
#61
-
Weekly Priorities
#62
-
Personal Goals
#63
-
Fitness Goals
#64
-
Long-term Goals
#65
-
Personal Goals
#66
-
Errands
#67
-
Follow-ups
#68
-
Errands
#69
-
Fitness Goals
#70
-
Follow-ups
#71
-
Learning Objectives
#72
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": 49,
"userId": 42,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2025-09-07T14:04:50.124Z",
"updatedAt": "2026-05-16T14:39:44.525Z"
},
{
"id": 50,
"userId": 43,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-08-22T11:31:49.377Z",
"updatedAt": "2025-12-12T20:42:10.795Z"
},
{
"id": 51,
"userId": 44,
"name": "Learning Objectives",
"isArchived": false,
"createdAt": "2025-12-21T06:24:24.263Z",
"updatedAt": "2026-02-12T20:49:51.954Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=3&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=4&limit=24",
"prev": "/api/v1/todo-lists?page=2&limit=24"
}
}