Birthday Wishlist
- userId
-
Myrtie Daniel @myrtie_daniel33
- name
- Birthday Wishlist
- isPublic
- true
- productIds
-
[ 174, 114, 13, 146, 65, 23, 151, 67, 187, 129, 61, 64, 123, 39, 6 ] - createdAt
- updatedAt
Overview
wishlists / #50
[
174,
114,
13,
146,
65,
23,
151,
67,
187,
129,
61,
64,
123,
39,
6
]
Birthday Wishlist
#50
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/50" ); 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/50"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/50"
)
wishlist = res.json() Response
{
"id": 50,
"userId": 45,
"name": "Birthday Wishlist",
"isPublic": true,
"productIds": [
174,
114,
13,
146,
65,
23,
151,
67,
187,
129,
61,
64,
123,
39,
6
],
"createdAt": "2025-04-08T06:04:02.944Z",
"updatedAt": "2025-08-13T01:46:37.788Z"
}