example-data.com

wishlists / #81

userId
Bradford Doyle @bradford.doyle42
name
Back to School
isPublic
true
productIds
[
  104,
  18,
  21
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/81"
)
wishlist = res.json()
{
  "id": 81,
  "userId": 79,
  "name": "Back to School",
  "isPublic": true,
  "productIds": [
    104,
    18,
    21
  ],
  "createdAt": "2025-06-23T01:20:21.994Z",
  "updatedAt": "2026-01-29T22:05:10.484Z"
}
Draftbit