wishlists
wishlists
Browse 239 wishlists records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- wishlists/1
- wishlists/2
- wishlists/3
- wishlists/4
- wishlists/5
- wishlists/6
- wishlists/7
- wishlists/8
- wishlists/9
- wishlists/10
- wishlists/11
- wishlists/12
- wishlists/13
- wishlists/14
- wishlists/15
- wishlists/16
- wishlists/17
- wishlists/18
- wishlists/19
- wishlists/20
- wishlists/21
- wishlists/22
- wishlists/23
- wishlists/24
-
Summer Picks
#1
-
Holiday Gifts
#2
-
Holiday Gifts
#3
-
Home Decor
#4
-
Holiday Gifts
#5
-
Gift Ideas
#6
-
Summer Picks
#7
-
Back to School
#8
-
Saved for Later
#9
-
Want Later
#10
-
Summer Picks
#11
-
Home Decor
#12
-
Summer Picks
#13
-
Gift Ideas
#14
-
Birthday Wishlist
#15
-
Back to School
#16
-
Holiday Gifts
#17
-
Birthday Wishlist
#18
-
Birthday Wishlist
#19
-
Back to School
#20
-
Summer Picks
#21
-
Tech Gadgets
#22
-
Holiday Gifts
#23
-
Home Decor
#24
- userId
-
Charlene Roberts @charlene_roberts
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 47, 86, 28, 137, 59, 95, 111, 135, 158, 174 ] - createdAt
- updatedAt
- userId
-
Charlene Roberts @charlene_roberts
- name
- Holiday Gifts
- isPublic
- true
- productIds
-
[ 43, 94, 195, 83, 2, 17, 109, 130, 74, 177, 46, 164, 148 ] - createdAt
- updatedAt
- userId
-
Amina King @amina_king41
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 151, 176, 13, 19, 36, 67, 47, 37, 105, 22, 43, 53, 85 ] - createdAt
- updatedAt
- userId
-
Amina King @amina_king41
- name
- Home Decor
- isPublic
- true
- productIds
-
[ 17, 75, 187, 170, 13, 148, 18, 174, 69, 24, 143 ] - createdAt
- updatedAt
- userId
-
Conner Bernhard @conner.bernhard33
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 66, 156 ] - createdAt
- updatedAt
- userId
-
Webster Skiles @webster_skiles39
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 11, 78, 75, 25, 12, 19, 36, 67, 196 ] - 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": 1,
"userId": 1,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
47,
86,
28,
137,
59,
95,
111,
135,
158,
174
],
"createdAt": "2026-04-04T17:14:46.340Z",
"updatedAt": "2026-04-13T03:20:44.226Z"
},
{
"id": 2,
"userId": 1,
"name": "Holiday Gifts",
"isPublic": true,
"productIds": [
43,
94,
195,
83,
2,
17,
109,
130,
74,
177,
46,
164,
148
],
"createdAt": "2024-12-26T13:35:31.507Z",
"updatedAt": "2025-08-17T09:30:54.911Z"
},
{
"id": 3,
"userId": 2,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
151,
176,
13,
19,
36,
67,
47,
37,
105,
22,
43,
53,
85
],
"createdAt": "2024-12-16T18:38:21.089Z",
"updatedAt": "2026-01-19T07:31:44.120Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 239,
"totalPages": 10
},
"links": {
"self": "/api/v1/wishlists?page=1",
"first": "/api/v1/wishlists?page=1",
"last": "/api/v1/wishlists?page=10",
"next": "/api/v1/wishlists?page=2",
"prev": null
}
}