example-data.com

wishlists / #142

userId
Jacynthe Sawayn @jacynthe_sawayn71
name
Tech Gadgets
isPublic
true
productIds
[
  164,
  199,
  157,
  61,
  84,
  197,
  172
]
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/wishlists/142" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists/142"
);
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/142"
);
const wishlist = (await res.json()) as Wishlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/142"
)
wishlist = res.json()
{
  "id": 142,
  "userId": 146,
  "name": "Tech Gadgets",
  "isPublic": true,
  "productIds": [
    164,
    199,
    157,
    61,
    84,
    197,
    172
  ],
  "createdAt": "2026-05-17T12:23:11.181Z",
  "updatedAt": "2026-05-18T22:30:01.145Z"
}
Draftbit