wishlists
wishlists
Page 5 of 10.
- wishlists/97
- wishlists/98
- wishlists/99
- wishlists/100
- wishlists/101
- wishlists/102
- wishlists/103
- wishlists/104
- wishlists/105
- wishlists/106
- wishlists/107
- wishlists/108
- wishlists/109
- wishlists/110
- wishlists/111
- wishlists/112
- wishlists/113
- wishlists/114
- wishlists/115
- wishlists/116
- wishlists/117
- wishlists/118
- wishlists/119
- wishlists/120
-
Summer Picks
#97
-
Favourites
#98
-
Home Decor
#99
-
Tech Gadgets
#100
-
Summer Picks
#101
-
Birthday Wishlist
#102
-
Want Later
#103
-
Saved for Later
#104
-
Holiday Gifts
#105
-
Saved for Later
#106
-
Saved for Later
#107
-
Want Later
#108
-
Saved for Later
#109
-
Want Later
#110
-
Gift Ideas
#111
-
Tech Gadgets
#112
-
Back to School
#113
-
Gift Ideas
#114
-
Summer Picks
#115
-
Summer Picks
#116
-
Back to School
#117
-
Want Later
#118
-
Saved for Later
#119
-
Tech Gadgets
#120
- userId
-
Matilde Beahan @matilde_beahan
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 14, 62, 75, 159, 109, 122, 95, 54, 171, 135 ] - createdAt
- updatedAt
- userId
-
Esperanza Casper @esperanza_casper
- name
- Favourites
- isPublic
- true
- productIds
-
[ 48, 183, 138, 122, 16, 108, 102, 167, 34, 143 ] - createdAt
- updatedAt
- userId
-
Esperanza Casper @esperanza_casper
- name
- Home Decor
- isPublic
- true
- productIds
-
[ 70, 117, 186, 190, 84, 108, 181 ] - createdAt
- updatedAt
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 63, 110, 130, 153, 9, 172, 192, 11, 173, 169, 14, 90, 197, 26, 66 ] - createdAt
- updatedAt
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 99, 23, 141, 25, 111, 30, 176, 108, 2 ] - createdAt
- updatedAt
- userId
-
Whitney O'Reilly @whitney.oreilly
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 57, 149, 127, 76, 151 ] - 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": 97,
"userId": 96,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
14,
62,
75,
159,
109,
122,
95,
54,
171,
135
],
"createdAt": "2025-02-25T19:08:10.385Z",
"updatedAt": "2025-10-04T10:45:30.696Z"
},
{
"id": 98,
"userId": 97,
"name": "Favourites",
"isPublic": true,
"productIds": [
48,
183,
138,
122,
16,
108,
102,
167,
34,
143
],
"createdAt": "2026-03-20T19:42:23.831Z",
"updatedAt": "2026-04-10T06:40:32.808Z"
},
{
"id": 99,
"userId": 97,
"name": "Home Decor",
"isPublic": true,
"productIds": [
70,
117,
186,
190,
84,
108,
181
],
"createdAt": "2025-05-06T09:07:26.077Z",
"updatedAt": "2026-04-30T09:46:42.556Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=5",
"next": "/api/v1/wishlists?page=6",
"prev": "/api/v1/wishlists?page=4"
}
}