example-data.com

todo-lists

todo-lists

Page 2 of 10.

userId
Celia D'Amore @celia_damore
name
Backlog
isArchived
false
createdAt
updatedAt
userId
Celia D'Amore @celia_damore
name
Books to Read
isArchived
false
createdAt
updatedAt
userId
Jennifer Stoltenberg @jennifer_stoltenberg
name
Personal Goals
isArchived
false
createdAt
updatedAt
userId
Queen Lubowitz @queen.lubowitz76
name
Home Projects
isArchived
false
createdAt
updatedAt
userId
Queen Lubowitz @queen.lubowitz76
name
Backlog
isArchived
false
createdAt
updatedAt
userId
Izaiah Rempel @izaiah_rempel
name
Meeting Notes
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": 25,
      "userId": 24,
      "name": "Backlog",
      "isArchived": false,
      "createdAt": "2026-04-10T11:57:28.352Z",
      "updatedAt": "2026-05-07T16:09:12.245Z"
    },
    {
      "id": 26,
      "userId": 24,
      "name": "Books to Read",
      "isArchived": false,
      "createdAt": "2026-03-27T16:31:39.814Z",
      "updatedAt": "2026-05-04T17:41:14.362Z"
    },
    {
      "id": 27,
      "userId": 25,
      "name": "Personal Goals",
      "isArchived": false,
      "createdAt": "2026-04-18T05:07:19.232Z",
      "updatedAt": "2026-04-21T13:15:48.364Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/todo-lists?page=2",
    "next": "/api/v1/todo-lists?page=3",
    "prev": "/api/v1/todo-lists?page=1"
  }
}
Draftbit