Saved for Later
- userId
-
Adelia Roberts @adelia_roberts0
- name
- Saved for Later
- isPublic
- false
- productIds
-
[ 150, 62, 10, 93, 126, 66, 134, 60, 195, 190, 167, 96 ] - createdAt
- updatedAt
Overview
wishlists / #222
[
150,
62,
10,
93,
126,
66,
134,
60,
195,
190,
167,
96
]
Saved for Later
#222
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/222" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/222"
);
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/222"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/222"
)
wishlist = res.json()
Response
{
"id": 222,
"userId": 231,
"name": "Saved for Later",
"isPublic": false,
"productIds": [
150,
62,
10,
93,
126,
66,
134,
60,
195,
190,
167,
96
],
"createdAt": "2025-11-11T14:21:28.142Z",
"updatedAt": "2026-03-25T02:04:51.647Z"
}