example-data.com

wishlists

wishlists

Page 2 of 10.

userId
Antoinette Greenfelder @antoinette_greenfelder61
name
Saved for Later
isPublic
false
productIds
[
  197,
  58,
  108,
  128,
  76,
  132,
  200,
  199,
  138,
  26,
  86,
  92,
  84,
  188,
  118
]
createdAt
updatedAt
userId
Antoinette Greenfelder @antoinette_greenfelder61
name
Birthday Wishlist
isPublic
true
productIds
[
  28,
  16,
  19,
  75,
  42,
  147,
  158,
  2,
  46,
  195,
  111
]
createdAt
updatedAt
userId
Celia D'Amore @celia_damore
name
Holiday Gifts
isPublic
false
productIds
[
  1,
  46,
  77,
  125,
  133,
  172
]
createdAt
updatedAt
userId
Celia D'Amore @celia_damore
name
Back to School
isPublic
false
productIds
[
  59,
  100,
  51,
  78,
  116,
  166,
  15
]
createdAt
updatedAt
userId
Melvina Reilly @melvina_reilly83
name
Summer Picks
isPublic
true
productIds
[
  76,
  170,
  9,
  35,
  190,
  178,
  118,
  184,
  27,
  26,
  132
]
createdAt
updatedAt
userId
Melvina Reilly @melvina_reilly83
name
Summer Picks
isPublic
true
productIds
[
  65,
  153,
  107,
  14,
  12,
  31,
  90,
  141,
  3,
  104,
  108,
  126,
  183,
  41
]
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": 25,
      "userId": 22,
      "name": "Saved for Later",
      "isPublic": false,
      "productIds": [
        197,
        58,
        108,
        128,
        76,
        132,
        200,
        199,
        138,
        26,
        86,
        92,
        84,
        188,
        118
      ],
      "createdAt": "2024-08-28T01:20:37.403Z",
      "updatedAt": "2025-05-05T18:25:55.000Z"
    },
    {
      "id": 26,
      "userId": 22,
      "name": "Birthday Wishlist",
      "isPublic": true,
      "productIds": [
        28,
        16,
        19,
        75,
        42,
        147,
        158,
        2,
        46,
        195,
        111
      ],
      "createdAt": "2024-11-21T21:13:29.756Z",
      "updatedAt": "2025-08-17T17:29:59.249Z"
    },
    {
      "id": 27,
      "userId": 24,
      "name": "Holiday Gifts",
      "isPublic": false,
      "productIds": [
        1,
        46,
        77,
        125,
        133,
        172
      ],
      "createdAt": "2025-01-04T11:26:52.708Z",
      "updatedAt": "2026-01-27T03:12:50.642Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=2",
    "next": "/api/v1/wishlists?page=3",
    "prev": "/api/v1/wishlists?page=1"
  }
}
Draftbit