example-data.com

todo-lists

todo-lists

Page 3 of 10.

userId
Trace Witting-Stamm @trace_witting-stamm17
name
Personal Goals
isArchived
false
createdAt
updatedAt
userId
Lamar Wilkinson @lamar_wilkinson43
name
Backlog
isArchived
false
createdAt
updatedAt
userId
Everett Yundt @everett_yundt11
name
Learning Objectives
isArchived
false
createdAt
updatedAt
userId
Myrtie Daniel @myrtie_daniel33
name
Personal Goals
isArchived
false
createdAt
updatedAt
userId
Lacy Gusikowski @lacy.gusikowski
name
Work Tasks
isArchived
false
createdAt
updatedAt
userId
Lacy Gusikowski @lacy.gusikowski
name
Travel Plans
isArchived
false
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/todo-lists?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = await res.json();
import type { TodoList, ListEnvelope } from "https://example-data.com/types/todo-lists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TodoList>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/todo-lists",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/todo-lists?page=4",
    "prev": "/api/v1/todo-lists?page=2"
  }
}
Draftbit