wishlists
wishlists
Page 4 of 10.
- wishlists/73
- wishlists/74
- wishlists/75
- wishlists/76
- wishlists/77
- wishlists/78
- wishlists/79
- wishlists/80
- wishlists/81
- wishlists/82
- wishlists/83
- wishlists/84
- wishlists/85
- wishlists/86
- wishlists/87
- wishlists/88
- wishlists/89
- wishlists/90
- wishlists/91
- wishlists/92
- wishlists/93
- wishlists/94
- wishlists/95
- wishlists/96
-
Back to School
#73
-
Home Decor
#74
-
Birthday Wishlist
#75
-
Favourites
#76
-
Gift Ideas
#77
-
Gift Ideas
#78
-
Tech Gadgets
#79
-
Summer Picks
#80
-
Back to School
#81
-
Saved for Later
#82
-
Gift Ideas
#83
-
Gift Ideas
#84
-
Back to School
#85
-
Tech Gadgets
#86
-
Back to School
#87
-
Gift Ideas
#88
-
Gift Ideas
#89
-
Favourites
#90
-
Favourites
#91
-
Tech Gadgets
#92
-
Saved for Later
#93
-
Back to School
#94
-
Saved for Later
#95
-
Birthday Wishlist
#96
- userId
-
Florencio Mohr @florencio_mohr
- name
- Back to School
- isPublic
- false
- productIds
-
[ 156, 170, 188, 37, 25, 31, 164 ] - createdAt
- updatedAt
- userId
-
Ryan Conroy @ryan_conroy
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 140, 153, 112, 106, 145, 97, 141, 14, 137, 8, 96, 4, 188 ] - createdAt
- updatedAt
- userId
-
Ryan Conroy @ryan_conroy
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 146, 79, 53 ] - createdAt
- updatedAt
- userId
-
Terence Lemke @terence.lemke85
- name
- Favourites
- isPublic
- false
- productIds
-
[ 158, 84, 61, 148, 68, 171, 174, 10, 115, 153, 54, 48, 178 ] - createdAt
- updatedAt
- userId
-
Candace Mueller @candace.mueller
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 137, 158, 18, 51, 44, 63, 116, 96, 120, 122, 88, 19, 194, 105, 5 ] - createdAt
- updatedAt
- userId
-
Candace Mueller @candace.mueller
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 180, 192, 162, 58, 12 ] - 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": 73,
"userId": 71,
"name": "Back to School",
"isPublic": false,
"productIds": [
156,
170,
188,
37,
25,
31,
164
],
"createdAt": "2025-03-02T19:11:31.095Z",
"updatedAt": "2025-06-26T03:31:33.256Z"
},
{
"id": 74,
"userId": 73,
"name": "Home Decor",
"isPublic": false,
"productIds": [
140,
153,
112,
106,
145,
97,
141,
14,
137,
8,
96,
4,
188
],
"createdAt": "2025-09-11T14:32:42.824Z",
"updatedAt": "2025-12-22T07:05:37.254Z"
},
{
"id": 75,
"userId": 73,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
146,
79,
53
],
"createdAt": "2024-09-11T05:28:28.508Z",
"updatedAt": "2024-12-23T03:22:15.882Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=4",
"next": "/api/v1/wishlists?page=5",
"prev": "/api/v1/wishlists?page=3"
}
}