wishlists
wishlists
Page 8 of 10.
- wishlists/169
- wishlists/170
- wishlists/171
- wishlists/172
- wishlists/173
- wishlists/174
- wishlists/175
- wishlists/176
- wishlists/177
- wishlists/178
- wishlists/179
- wishlists/180
- wishlists/181
- wishlists/182
- wishlists/183
- wishlists/184
- wishlists/185
- wishlists/186
- wishlists/187
- wishlists/188
- wishlists/189
- wishlists/190
- wishlists/191
- wishlists/192
-
Gift Ideas
#169
-
Back to School
#170
-
Tech Gadgets
#171
-
Birthday Wishlist
#172
-
Want Later
#173
-
Back to School
#174
-
Holiday Gifts
#175
-
Summer Picks
#176
-
Gift Ideas
#177
-
Summer Picks
#178
-
Back to School
#179
-
Want Later
#180
-
Summer Picks
#181
-
Saved for Later
#182
-
Want Later
#183
-
Summer Picks
#184
-
Gift Ideas
#185
-
Gift Ideas
#186
-
Holiday Gifts
#187
-
Holiday Gifts
#188
-
Home Decor
#189
-
Back to School
#190
-
Saved for Later
#191
-
Holiday Gifts
#192
- userId
-
Fatima Dicki @fatima_dicki
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 181, 150, 156, 116 ] - createdAt
- updatedAt
- userId
-
Fatima Dicki @fatima_dicki
- name
- Back to School
- isPublic
- false
- productIds
-
[ 188, 73, 1, 82, 77, 127, 121, 124, 81, 65, 57, 195, 10, 66 ] - createdAt
- updatedAt
- userId
-
Americo Hoppe @americo_hoppe57
- name
- Tech Gadgets
- isPublic
- true
- productIds
-
[ 20, 130, 182, 132, 17, 29, 69, 199, 118, 174, 99, 95, 50, 166, 110 ] - createdAt
- updatedAt
- userId
-
Gerald Lind @gerald_lind57
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 72, 170, 129, 176, 69, 82, 158, 169, 25, 46, 63, 196, 62, 118, 1 ] - createdAt
- updatedAt
- userId
-
Gerald Lind @gerald_lind57
- name
- Want Later
- isPublic
- false
- productIds
-
[ 70, 166 ] - createdAt
- updatedAt
- userId
-
Lazaro Herzog @lazaro_herzog
- name
- Back to School
- isPublic
- true
- productIds
-
[ 135, 120, 151, 81, 25, 90, 70, 69, 89 ] - 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": 169,
"userId": 176,
"name": "Gift Ideas",
"isPublic": false,
"productIds": [
181,
150,
156,
116
],
"createdAt": "2026-02-23T10:52:34.860Z",
"updatedAt": "2026-03-31T19:29:18.870Z"
},
{
"id": 170,
"userId": 176,
"name": "Back to School",
"isPublic": false,
"productIds": [
188,
73,
1,
82,
77,
127,
121,
124,
81,
65,
57,
195,
10,
66
],
"createdAt": "2025-02-25T12:31:42.352Z",
"updatedAt": "2025-10-17T01:44:13.857Z"
},
{
"id": 171,
"userId": 177,
"name": "Tech Gadgets",
"isPublic": true,
"productIds": [
20,
130,
182,
132,
17,
29,
69,
199,
118,
174,
99,
95,
50,
166,
110
],
"createdAt": "2026-01-30T18:50:27.498Z",
"updatedAt": "2026-05-20T03:33:44.383Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=8",
"next": "/api/v1/wishlists?page=9",
"prev": "/api/v1/wishlists?page=7"
}
}