Saved for Later
- userId
-
Marcelina Grady @marcelina_grady19
- name
- Saved for Later
- isPublic
- true
- productIds
-
[ 95, 108, 141, 146, 104, 150 ] - createdAt
- updatedAt
Overview
wishlists / #230
[
95,
108,
141,
146,
104,
150
]
Saved for Later
#230
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/230" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/230"
);
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/230"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/230"
)
wishlist = res.json()
Response
{
"id": 230,
"userId": 241,
"name": "Saved for Later",
"isPublic": true,
"productIds": [
95,
108,
141,
146,
104,
150
],
"createdAt": "2025-05-30T14:25:54.796Z",
"updatedAt": "2026-01-18T06:48:11.672Z"
}