example-data.com

todo-lists

todo-lists

Page 5 of 10.

userId
Tabitha McKenzie @tabitha_mckenzie
name
Follow-ups
isArchived
false
createdAt
updatedAt
userId
Lazaro Rath @lazaro.rath42
name
Meeting Notes
isArchived
false
createdAt
updatedAt
userId
Lazaro Rath @lazaro.rath42
name
Home Projects
isArchived
false
createdAt
updatedAt
userId
Rosina Larkin @rosina.larkin75
name
Learning Objectives
isArchived
true
createdAt
updatedAt
userId
Rosina Larkin @rosina.larkin75
name
Books to Read
isArchived
false
createdAt
updatedAt
userId
Jermain Kshlerin @jermain_kshlerin51
name
Personal Goals
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": 97,
      "userId": 98,
      "name": "Follow-ups",
      "isArchived": false,
      "createdAt": "2026-05-15T13:23:35.987Z",
      "updatedAt": "2026-05-18T15:58:46.703Z"
    },
    {
      "id": 98,
      "userId": 102,
      "name": "Meeting Notes",
      "isArchived": false,
      "createdAt": "2026-05-21T14:15:49.443Z",
      "updatedAt": "2026-05-21T19:35:04.349Z"
    },
    {
      "id": 99,
      "userId": 102,
      "name": "Home Projects",
      "isArchived": false,
      "createdAt": "2026-04-14T01:16:57.481Z",
      "updatedAt": "2026-04-21T06:15:27.715Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/todo-lists?page=5",
    "next": "/api/v1/todo-lists?page=6",
    "prev": "/api/v1/todo-lists?page=4"
  }
}
Draftbit