example-data.com

todo-lists

todo-lists

Page 9 of 10.

userId
Rosemary Krajcik @rosemary_krajcik
name
Ideas
isArchived
false
createdAt
updatedAt
userId
Selina Flatley @selina_flatley
name
Shopping List
isArchived
false
createdAt
updatedAt
userId
Oliver Mitchell @oliver_mitchell50
name
Weekly Priorities
isArchived
false
createdAt
updatedAt
userId
Oliver Mitchell @oliver_mitchell50
name
Work Tasks
isArchived
false
createdAt
updatedAt
userId
Joseph Nitzsche @joseph_nitzsche
name
Meeting Notes
isArchived
false
createdAt
updatedAt
userId
Joseph Nitzsche @joseph_nitzsche
name
Ideas
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": 193,
      "userId": 191,
      "name": "Ideas",
      "isArchived": false,
      "createdAt": "2025-10-04T15:21:36.852Z",
      "updatedAt": "2025-11-05T17:49:35.477Z"
    },
    {
      "id": 194,
      "userId": 193,
      "name": "Shopping List",
      "isArchived": false,
      "createdAt": "2025-08-12T00:28:29.053Z",
      "updatedAt": "2025-10-18T04:49:49.766Z"
    },
    {
      "id": 195,
      "userId": 194,
      "name": "Weekly Priorities",
      "isArchived": false,
      "createdAt": "2025-09-30T21:15:57.563Z",
      "updatedAt": "2025-12-01T10:24:32.397Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/todo-lists?page=9",
    "next": "/api/v1/todo-lists?page=10",
    "prev": "/api/v1/todo-lists?page=8"
  }
}
Draftbit