example-data.com

todo-lists

todo-lists

Page 8 of 10.

userId
Alexander Beahan @alexander.beahan57
name
Follow-ups
isArchived
false
createdAt
updatedAt
userId
Kamryn Rogahn @kamryn_rogahn40
name
Travel Plans
isArchived
false
createdAt
updatedAt
userId
Kamryn Rogahn @kamryn_rogahn40
name
Weekly Priorities
isArchived
true
createdAt
updatedAt
userId
Kaleb Schmidt @kaleb.schmidt
name
Long-term Goals
isArchived
true
createdAt
updatedAt
userId
Daisy Kuhic @daisy_kuhic24
name
Long-term Goals
isArchived
false
createdAt
updatedAt
userId
Perry Kerluke @perry_kerluke83
name
Ideas
isArchived
true
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": 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",
    "next": "/api/v1/todo-lists?page=9",
    "prev": "/api/v1/todo-lists?page=7"
  }
}
Draftbit