Saved for Later
- userId
-
Charity Crona @charity.crona12
- name
- Saved for Later
- isPublic
- true
- productIds
-
[ 127, 120, 4, 80, 19, 153, 7, 177, 179, 112, 124, 149, 71, 151 ] - createdAt
- updatedAt
Overview
wishlists / #104
[
127,
120,
4,
80,
19,
153,
7,
177,
179,
112,
124,
149,
71,
151
]
Saved for Later
#104
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/104" ); const wishlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/wishlists.d.ts https://example-data.com/types/wishlists.d.ts
import type { Wishlist } from "./types/wishlists";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/104"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/104"
)
wishlist = res.json() Response
{
"id": 104,
"userId": 100,
"name": "Saved for Later",
"isPublic": true,
"productIds": [
127,
120,
4,
80,
19,
153,
7,
177,
179,
112,
124,
149,
71,
151
],
"createdAt": "2026-02-17T22:52:42.760Z",
"updatedAt": "2026-05-10T01:54:08.485Z"
}