example-data.com

wishlists / #213

userId
Loren Schmidt @loren_schmidt
name
Back to School
isPublic
false
productIds
[
  97,
  199,
  94,
  131,
  69,
  47,
  49,
  151,
  99,
  188,
  44
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/213"
)
wishlist = res.json()
{
  "id": 213,
  "userId": 222,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    97,
    199,
    94,
    131,
    69,
    47,
    49,
    151,
    99,
    188,
    44
  ],
  "createdAt": "2026-03-05T23:37:22.523Z",
  "updatedAt": "2026-05-15T16:36:05.746Z"
}
Draftbit