todo-lists
todo-lists
Page 2 of 11.
Overview
-
Backlog
#25
-
Books to Read
#26
-
Personal Goals
#27
-
Home Projects
#28
-
Backlog
#29
-
Meeting Notes
#30
-
Home Projects
#31
-
Work Tasks
#32
-
Books to Read
#33
-
Home Projects
#34
-
Ideas
#35
-
Fitness Goals
#36
-
Personal Goals
#37
-
Books to Read
#38
-
Personal Goals
#39
-
Personal Goals
#40
-
Shopping List
#41
-
Meeting Notes
#42
-
Long-term Goals
#43
-
Work Tasks
#44
-
Backlog
#45
-
Home Projects
#46
-
Weekly Priorities
#47
-
Follow-ups
#48
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": 25,
"userId": 24,
"name": "Backlog",
"isArchived": false,
"createdAt": "2026-04-10T11:57:28.352Z",
"updatedAt": "2026-05-07T16:09:12.245Z"
},
{
"id": 26,
"userId": 24,
"name": "Books to Read",
"isArchived": false,
"createdAt": "2026-03-27T16:31:39.814Z",
"updatedAt": "2026-05-04T17:41:14.362Z"
},
{
"id": 27,
"userId": 25,
"name": "Personal Goals",
"isArchived": false,
"createdAt": "2026-04-18T05:07:19.232Z",
"updatedAt": "2026-04-21T13:15:48.364Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/todo-lists?page=2&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=3&limit=24",
"prev": "/api/v1/todo-lists?page=1&limit=24"
}
}