wishlists
wishlists
Page 9 of 10.
- wishlists/193
- wishlists/194
- wishlists/195
- wishlists/196
- wishlists/197
- wishlists/198
- wishlists/199
- wishlists/200
- wishlists/201
- wishlists/202
- wishlists/203
- wishlists/204
- wishlists/205
- wishlists/206
- wishlists/207
- wishlists/208
- wishlists/209
- wishlists/210
- wishlists/211
- wishlists/212
- wishlists/213
- wishlists/214
- wishlists/215
- wishlists/216
-
Gift Ideas
#193
-
Tech Gadgets
#194
-
Summer Picks
#195
-
Back to School
#196
-
Favourites
#197
-
Birthday Wishlist
#198
-
Summer Picks
#199
-
Summer Picks
#200
-
Summer Picks
#201
-
Saved for Later
#202
-
Gift Ideas
#203
-
Saved for Later
#204
-
Birthday Wishlist
#205
-
Favourites
#206
-
Summer Picks
#207
-
Favourites
#208
-
Gift Ideas
#209
-
Saved for Later
#210
-
Favourites
#211
-
Birthday Wishlist
#212
-
Back to School
#213
-
Back to School
#214
-
Summer Picks
#215
-
Gift Ideas
#216
- 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"
}
}