example-data.com

wishlists / #94

userId
Camron O'Conner @camron.oconner54
name
Back to School
isPublic
false
productIds
[
  14,
  134,
  185,
  179,
  54,
  157,
  116,
  133
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/94"
)
wishlist = res.json()
{
  "id": 94,
  "userId": 94,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    14,
    134,
    185,
    179,
    54,
    157,
    116,
    133
  ],
  "createdAt": "2025-04-29T00:52:44.078Z",
  "updatedAt": "2025-06-07T09:08:45.490Z"
}
Draftbit