wishlists
wishlists
Page 2 of 10.
- wishlists/25
- wishlists/26
- wishlists/27
- wishlists/28
- wishlists/29
- wishlists/30
- wishlists/31
- wishlists/32
- wishlists/33
- wishlists/34
- wishlists/35
- wishlists/36
- wishlists/37
- wishlists/38
- wishlists/39
- wishlists/40
- wishlists/41
- wishlists/42
- wishlists/43
- wishlists/44
- wishlists/45
- wishlists/46
- wishlists/47
- wishlists/48
-
Saved for Later
#25
-
Birthday Wishlist
#26
-
Holiday Gifts
#27
-
Back to School
#28
-
Summer Picks
#29
-
Summer Picks
#30
-
Saved for Later
#31
-
Gift Ideas
#32
-
Gift Ideas
#33
-
Tech Gadgets
#34
-
Home Decor
#35
-
Tech Gadgets
#36
-
Saved for Later
#37
-
Holiday Gifts
#38
-
Back to School
#39
-
Favourites
#40
-
Birthday Wishlist
#41
-
Saved for Later
#42
-
Birthday Wishlist
#43
-
Want Later
#44
-
Saved for Later
#45
-
Saved for Later
#46
-
Summer Picks
#47
-
Favourites
#48
- 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"
}
}