Want Later
- userId
-
Fritz Skiles @fritz_skiles
- name
- Want Later
- isPublic
- false
- productIds
-
[ 193, 192, 17, 44, 104, 36, 120, 2, 94, 22, 47, 176 ] - createdAt
- updatedAt
Overview
wishlists / #141
[
193,
192,
17,
44,
104,
36,
120,
2,
94,
22,
47,
176
]
Want Later
#141
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/141" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/141"
);
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/141"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/141"
)
wishlist = res.json()
Response
{
"id": 141,
"userId": 144,
"name": "Want Later",
"isPublic": false,
"productIds": [
193,
192,
17,
44,
104,
36,
120,
2,
94,
22,
47,
176
],
"createdAt": "2024-12-04T09:34:09.256Z",
"updatedAt": "2025-08-07T12:12:31.290Z"
}