example-data.com

todo-lists

todo-lists

Page 10 of 10.

userId
Sarah West @sarah.west
name
Work Tasks
isArchived
false
createdAt
updatedAt
userId
Sarah West @sarah.west
name
Backlog
isArchived
false
createdAt
updatedAt
userId
Dasia Volkman @dasia_volkman65
name
Books to Read
isArchived
false
createdAt
updatedAt
userId
Joseph Steuber @joseph_steuber
name
Ideas
isArchived
false
createdAt
updatedAt
userId
Loren Schmidt @loren_schmidt
name
Fitness Goals
isArchived
false
createdAt
updatedAt
userId
Loren Schmidt @loren_schmidt
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": 217,
      "userId": 217,
      "name": "Work Tasks",
      "isArchived": false,
      "createdAt": "2025-12-17T05:23:27.762Z",
      "updatedAt": "2026-04-13T20:27:38.149Z"
    },
    {
      "id": 218,
      "userId": 217,
      "name": "Backlog",
      "isArchived": false,
      "createdAt": "2026-04-13T02:32:29.383Z",
      "updatedAt": "2026-04-28T16:07:07.206Z"
    },
    {
      "id": 219,
      "userId": 219,
      "name": "Books to Read",
      "isArchived": false,
      "createdAt": "2025-12-28T22:16:58.886Z",
      "updatedAt": "2026-04-12T09:50:12.193Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/todo-lists?page=10",
    "next": "/api/v1/todo-lists?page=11",
    "prev": "/api/v1/todo-lists?page=9"
  }
}
Draftbit