example-data.com

wishlists / #49

userId
Myrtie Daniel @myrtie_daniel33
name
Summer Picks
isPublic
true
productIds
[
  184,
  9,
  50,
  158,
  176,
  169,
  81,
  10,
  167,
  24
]
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/wishlists/49" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists/49"
);
const wishlist = await res.json();
import type { Wishlist } from "https://example-data.com/types/wishlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/wishlists/49"
);
const wishlist = (await res.json()) as Wishlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/49"
)
wishlist = res.json()
{
  "id": 49,
  "userId": 45,
  "name": "Summer Picks",
  "isPublic": true,
  "productIds": [
    184,
    9,
    50,
    158,
    176,
    169,
    81,
    10,
    167,
    24
  ],
  "createdAt": "2025-08-14T19:26:38.460Z",
  "updatedAt": "2026-02-01T23:34:04.112Z"
}
Draftbit