example-data.com

wishlists / #177

userId
General Morissette @general_morissette47
name
Gift Ideas
isPublic
false
productIds
[
  29,
  185,
  20,
  176,
  100,
  144,
  112,
  81,
  38,
  94,
  17
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/177"
)
wishlist = res.json()
{
  "id": 177,
  "userId": 184,
  "name": "Gift Ideas",
  "isPublic": false,
  "productIds": [
    29,
    185,
    20,
    176,
    100,
    144,
    112,
    81,
    38,
    94,
    17
  ],
  "createdAt": "2024-07-10T06:47:54.268Z",
  "updatedAt": "2025-08-11T06:22:38.540Z"
}
Draftbit