wishlists
wishlists
Page 10 of 10.
- wishlists/217
- wishlists/218
- wishlists/219
- wishlists/220
- wishlists/221
- wishlists/222
- wishlists/223
- wishlists/224
- wishlists/225
- wishlists/226
- wishlists/227
- wishlists/228
- wishlists/229
- wishlists/230
- wishlists/231
- wishlists/232
- wishlists/233
- wishlists/234
- wishlists/235
- wishlists/236
- wishlists/237
- wishlists/238
- wishlists/239
-
Home Decor
#217
-
Holiday Gifts
#218
-
Back to School
#219
-
Want Later
#220
-
Saved for Later
#221
-
Saved for Later
#222
-
Back to School
#223
-
Favourites
#224
-
Home Decor
#225
-
Gift Ideas
#226
-
Back to School
#227
-
Summer Picks
#228
-
Want Later
#229
-
Saved for Later
#230
-
Holiday Gifts
#231
-
Back to School
#232
-
Home Decor
#233
-
Tech Gadgets
#234
-
Birthday Wishlist
#235
-
Birthday Wishlist
#236
-
Saved for Later
#237
-
Holiday Gifts
#238
-
Saved for Later
#239
- 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"
}
}