example-data.com

wishlists / #111

userId
Vida Kunde-Koepp @vida_kunde-koepp95
name
Gift Ideas
isPublic
true
productIds
[
  8,
  183,
  93,
  101,
  198,
  124,
  22,
  34,
  45,
  197,
  164,
  157,
  100
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/111"
)
wishlist = res.json()
{
  "id": 111,
  "userId": 109,
  "name": "Gift Ideas",
  "isPublic": true,
  "productIds": [
    8,
    183,
    93,
    101,
    198,
    124,
    22,
    34,
    45,
    197,
    164,
    157,
    100
  ],
  "createdAt": "2024-08-10T16:13:13.330Z",
  "updatedAt": "2026-03-01T01:14:02.696Z"
}
Draftbit