example-data.com

wishlists

wishlists

Page 10 of 10.

userId
Karlee MacGyver @karlee_macgyver
name
Home Decor
isPublic
false
productIds
[
  114,
  70,
  137,
  159,
  119,
  82,
  47,
  111,
  99,
  136,
  60,
  56,
  154,
  97,
  74
]
createdAt
updatedAt
userId
Karlee MacGyver @karlee_macgyver
name
Holiday Gifts
isPublic
false
productIds
[
  114,
  142,
  166
]
createdAt
updatedAt
userId
Wallace Batz @wallace_batz
name
Back to School
isPublic
false
productIds
[
  112,
  75,
  128
]
createdAt
updatedAt
userId
Wallace Batz @wallace_batz
name
Want Later
isPublic
false
productIds
[
  3,
  174,
  94,
  66,
  141,
  81,
  178,
  64,
  165,
  56
]
createdAt
updatedAt
userId
Adelia Roberts @adelia_roberts0
name
Saved for Later
isPublic
false
productIds
[
  130,
  121,
  57,
  146,
  175,
  198
]
createdAt
updatedAt
userId
Adelia Roberts @adelia_roberts0
name
Saved for Later
isPublic
false
productIds
[
  150,
  62,
  10,
  93,
  126,
  66,
  134,
  60,
  195,
  190,
  167,
  96
]
createdAt
updatedAt

Showing first 6 of 23 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": 217,
      "userId": 228,
      "name": "Home Decor",
      "isPublic": false,
      "productIds": [
        114,
        70,
        137,
        159,
        119,
        82,
        47,
        111,
        99,
        136,
        60,
        56,
        154,
        97,
        74
      ],
      "createdAt": "2025-12-14T12:01:17.199Z",
      "updatedAt": "2026-03-19T23:16:11.202Z"
    },
    {
      "id": 218,
      "userId": 228,
      "name": "Holiday Gifts",
      "isPublic": false,
      "productIds": [
        114,
        142,
        166
      ],
      "createdAt": "2024-06-10T23:47:43.869Z",
      "updatedAt": "2026-02-28T18:28:36.575Z"
    },
    {
      "id": 219,
      "userId": 229,
      "name": "Back to School",
      "isPublic": false,
      "productIds": [
        112,
        75,
        128
      ],
      "createdAt": "2024-05-25T09:31:56.504Z",
      "updatedAt": "2026-03-22T12:59:16.769Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=10",
    "next": null,
    "prev": "/api/v1/wishlists?page=9"
  }
}
Draftbit