wishlists
wishlists
Page 7 of 10.
- wishlists/145
- wishlists/146
- wishlists/147
- wishlists/148
- wishlists/149
- wishlists/150
- wishlists/151
- wishlists/152
- wishlists/153
- wishlists/154
- wishlists/155
- wishlists/156
- wishlists/157
- wishlists/158
- wishlists/159
- wishlists/160
- wishlists/161
- wishlists/162
- wishlists/163
- wishlists/164
- wishlists/165
- wishlists/166
- wishlists/167
- wishlists/168
-
Back to School
#145
-
Tech Gadgets
#146
-
Holiday Gifts
#147
-
Want Later
#148
-
Favourites
#149
-
Back to School
#150
-
Holiday Gifts
#151
-
Saved for Later
#152
-
Home Decor
#153
-
Birthday Wishlist
#154
-
Favourites
#155
-
Tech Gadgets
#156
-
Holiday Gifts
#157
-
Back to School
#158
-
Saved for Later
#159
-
Home Decor
#160
-
Holiday Gifts
#161
-
Holiday Gifts
#162
-
Summer Picks
#163
-
Birthday Wishlist
#164
-
Summer Picks
#165
-
Favourites
#166
-
Birthday Wishlist
#167
-
Home Decor
#168
- userId
-
Rickie Sporer @rickie.sporer50
- name
- Back to School
- isPublic
- false
- productIds
-
[ 139, 106, 169, 31, 25, 103, 98, 19, 171, 101, 76, 16, 116, 22, 118 ] - createdAt
- updatedAt
- userId
-
Rickie Sporer @rickie.sporer50
- name
- Tech Gadgets
- isPublic
- true
- productIds
-
[ 116, 153, 168, 167, 33, 178, 90 ] - createdAt
- updatedAt
- userId
-
Jonathan Howe @jonathan_howe77
- name
- Holiday Gifts
- isPublic
- true
- productIds
-
[ 59, 193, 50, 9, 155, 99 ] - createdAt
- updatedAt
- userId
-
Jonathan Howe @jonathan_howe77
- name
- Want Later
- isPublic
- false
- productIds
-
[ 58, 196, 74, 98, 160, 121, 137, 157, 171, 33, 45, 105, 175 ] - createdAt
- updatedAt
- userId
-
Wiley Rodriguez @wiley.rodriguez19
- name
- Favourites
- isPublic
- false
- productIds
-
[ 34, 6, 79 ] - createdAt
- updatedAt
- userId
-
Wiley Rodriguez @wiley.rodriguez19
- name
- Back to School
- isPublic
- true
- productIds
-
[ 124, 149, 169, 29, 139, 80, 146, 94, 74, 140 ] - 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": 145,
"userId": 149,
"name": "Back to School",
"isPublic": false,
"productIds": [
139,
106,
169,
31,
25,
103,
98,
19,
171,
101,
76,
16,
116,
22,
118
],
"createdAt": "2024-11-20T08:24:14.610Z",
"updatedAt": "2025-12-06T21:56:11.971Z"
},
{
"id": 146,
"userId": 149,
"name": "Tech Gadgets",
"isPublic": true,
"productIds": [
116,
153,
168,
167,
33,
178,
90
],
"createdAt": "2025-06-14T23:33:10.587Z",
"updatedAt": "2025-10-04T06:41:53.888Z"
},
{
"id": 147,
"userId": 150,
"name": "Holiday Gifts",
"isPublic": true,
"productIds": [
59,
193,
50,
9,
155,
99
],
"createdAt": "2026-05-13T14:44:26.976Z",
"updatedAt": "2026-05-21T10:13:10.077Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=7",
"next": "/api/v1/wishlists?page=8",
"prev": "/api/v1/wishlists?page=6"
}
}