example-data.com

wishlists

wishlists

Page 9 of 10.

userId
Vidal Parker @vidal_parker12
name
Gift Ideas
isPublic
false
productIds
[
  32,
  89,
  170,
  28,
  107,
  139
]
createdAt
updatedAt
userId
Cassidy Boehm @cassidy_boehm22
name
Tech Gadgets
isPublic
true
productIds
[
  138,
  33,
  89,
  122,
  199,
  75,
  44,
  188
]
createdAt
updatedAt
userId
Jaylon Conroy @jaylon_conroy22
name
Summer Picks
isPublic
true
productIds
[
  174,
  92,
  119,
  129
]
createdAt
updatedAt
userId
Jaylon Conroy @jaylon_conroy22
name
Back to School
isPublic
false
productIds
[
  129,
  76,
  167,
  136,
  19,
  150,
  71,
  86,
  39
]
createdAt
updatedAt
userId
Adrain Kris-Hermiston @adrain.kris-hermiston
name
Favourites
isPublic
false
productIds
[
  173,
  67,
  16,
  60,
  124,
  105,
  157,
  155,
  181,
  195
]
createdAt
updatedAt
userId
Jamaal Rolfson @jamaal_rolfson
name
Birthday Wishlist
isPublic
false
productIds
[
  131,
  51,
  11,
  192,
  80,
  117
]
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": 193,
      "userId": 203,
      "name": "Gift Ideas",
      "isPublic": false,
      "productIds": [
        32,
        89,
        170,
        28,
        107,
        139
      ],
      "createdAt": "2025-07-03T07:59:15.566Z",
      "updatedAt": "2026-03-08T23:22:33.344Z"
    },
    {
      "id": 194,
      "userId": 204,
      "name": "Tech Gadgets",
      "isPublic": true,
      "productIds": [
        138,
        33,
        89,
        122,
        199,
        75,
        44,
        188
      ],
      "createdAt": "2025-05-08T04:55:20.624Z",
      "updatedAt": "2026-03-24T07:11:03.935Z"
    },
    {
      "id": 195,
      "userId": 205,
      "name": "Summer Picks",
      "isPublic": true,
      "productIds": [
        174,
        92,
        119,
        129
      ],
      "createdAt": "2024-11-11T06:31:34.479Z",
      "updatedAt": "2025-03-07T14:28:51.719Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=9",
    "next": "/api/v1/wishlists?page=10",
    "prev": "/api/v1/wishlists?page=8"
  }
}
Draftbit