example-data.com

wishlists

wishlists

Page 8 of 10.

userId
Fatima Dicki @fatima_dicki
name
Gift Ideas
isPublic
false
productIds
[
  181,
  150,
  156,
  116
]
createdAt
updatedAt
userId
Fatima Dicki @fatima_dicki
name
Back to School
isPublic
false
productIds
[
  188,
  73,
  1,
  82,
  77,
  127,
  121,
  124,
  81,
  65,
  57,
  195,
  10,
  66
]
createdAt
updatedAt
userId
Americo Hoppe @americo_hoppe57
name
Tech Gadgets
isPublic
true
productIds
[
  20,
  130,
  182,
  132,
  17,
  29,
  69,
  199,
  118,
  174,
  99,
  95,
  50,
  166,
  110
]
createdAt
updatedAt
userId
Gerald Lind @gerald_lind57
name
Birthday Wishlist
isPublic
false
productIds
[
  72,
  170,
  129,
  176,
  69,
  82,
  158,
  169,
  25,
  46,
  63,
  196,
  62,
  118,
  1
]
createdAt
updatedAt
userId
Gerald Lind @gerald_lind57
name
Want Later
isPublic
false
productIds
[
  70,
  166
]
createdAt
updatedAt
userId
Lazaro Herzog @lazaro_herzog
name
Back to School
isPublic
true
productIds
[
  135,
  120,
  151,
  81,
  25,
  90,
  70,
  69,
  89
]
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/wishlists?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists?limit=25"
);
const { data, meta } = await res.json();
import type { Wishlist, ListEnvelope } from "https://example-data.com/types/wishlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/wishlists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Wishlist>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 169,
      "userId": 176,
      "name": "Gift Ideas",
      "isPublic": false,
      "productIds": [
        181,
        150,
        156,
        116
      ],
      "createdAt": "2026-02-23T10:52:34.860Z",
      "updatedAt": "2026-03-31T19:29:18.870Z"
    },
    {
      "id": 170,
      "userId": 176,
      "name": "Back to School",
      "isPublic": false,
      "productIds": [
        188,
        73,
        1,
        82,
        77,
        127,
        121,
        124,
        81,
        65,
        57,
        195,
        10,
        66
      ],
      "createdAt": "2025-02-25T12:31:42.352Z",
      "updatedAt": "2025-10-17T01:44:13.857Z"
    },
    {
      "id": 171,
      "userId": 177,
      "name": "Tech Gadgets",
      "isPublic": true,
      "productIds": [
        20,
        130,
        182,
        132,
        17,
        29,
        69,
        199,
        118,
        174,
        99,
        95,
        50,
        166,
        110
      ],
      "createdAt": "2026-01-30T18:50:27.498Z",
      "updatedAt": "2026-05-20T03:33:44.383Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=8",
    "next": "/api/v1/wishlists?page=9",
    "prev": "/api/v1/wishlists?page=7"
  }
}
Draftbit