wishlists
wishlists
Page 6 of 10.
- wishlists/121
- wishlists/122
- wishlists/123
- wishlists/124
- wishlists/125
- wishlists/126
- wishlists/127
- wishlists/128
- wishlists/129
- wishlists/130
- wishlists/131
- wishlists/132
- wishlists/133
- wishlists/134
- wishlists/135
- wishlists/136
- wishlists/137
- wishlists/138
- wishlists/139
- wishlists/140
- wishlists/141
- wishlists/142
- wishlists/143
- wishlists/144
-
Favourites
#121
-
Summer Picks
#122
-
Birthday Wishlist
#123
-
Want Later
#124
-
Want Later
#125
-
Favourites
#126
-
Favourites
#127
-
Holiday Gifts
#128
-
Holiday Gifts
#129
-
Birthday Wishlist
#130
-
Summer Picks
#131
-
Summer Picks
#132
-
Holiday Gifts
#133
-
Saved for Later
#134
-
Gift Ideas
#135
-
Back to School
#136
-
Gift Ideas
#137
-
Gift Ideas
#138
-
Saved for Later
#139
-
Summer Picks
#140
-
Want Later
#141
-
Tech Gadgets
#142
-
Back to School
#143
-
Favourites
#144
- userId
-
Daren Lockman @daren_lockman67
- name
- Favourites
- isPublic
- true
- productIds
-
[ 113, 109, 57, 61, 101, 125, 71, 34, 110 ] - createdAt
- updatedAt
- userId
-
Leora Doyle @leora_doyle
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 193, 58, 25 ] - createdAt
- updatedAt
- userId
-
Jennifer Hoeger @jennifer.hoeger
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 104, 152, 39, 148, 87, 142, 90 ] - createdAt
- updatedAt
- userId
-
Lennie Dickinson @lennie_dickinson8
- name
- Want Later
- isPublic
- false
- productIds
-
[ 121, 171 ] - createdAt
- updatedAt
- userId
-
Nikko Kuhlman @nikko_kuhlman
- name
- Want Later
- isPublic
- false
- productIds
-
[ 56, 171, 115, 36, 185, 58, 139 ] - createdAt
- updatedAt
- userId
-
Nikko Kuhlman @nikko_kuhlman
- name
- Favourites
- isPublic
- false
- productIds
-
[ 111, 125, 137, 141, 155, 61, 174, 99, 173, 60, 88, 139, 45 ] - 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": 121,
"userId": 116,
"name": "Favourites",
"isPublic": true,
"productIds": [
113,
109,
57,
61,
101,
125,
71,
34,
110
],
"createdAt": "2025-10-17T14:43:31.266Z",
"updatedAt": "2026-04-18T12:56:02.423Z"
},
{
"id": 122,
"userId": 117,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
193,
58,
25
],
"createdAt": "2025-12-13T20:59:50.086Z",
"updatedAt": "2025-12-17T11:02:29.397Z"
},
{
"id": 123,
"userId": 119,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
104,
152,
39,
148,
87,
142,
90
],
"createdAt": "2026-03-26T20:10:01.431Z",
"updatedAt": "2026-04-09T00:54:28.248Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=6",
"next": "/api/v1/wishlists?page=7",
"prev": "/api/v1/wishlists?page=5"
}
}