example-data.com

wishlists / #23

userId
Guy Christiansen @guy.christiansen40
name
Holiday Gifts
isPublic
false
productIds
[
  174,
  118,
  114,
  111,
  161,
  193,
  2,
  164,
  30,
  200,
  24,
  66,
  154,
  133
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/23"
)
wishlist = res.json()
{
  "id": 23,
  "userId": 21,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    174,
    118,
    114,
    111,
    161,
    193,
    2,
    164,
    30,
    200,
    24,
    66,
    154,
    133
  ],
  "createdAt": "2025-12-10T21:25:31.860Z",
  "updatedAt": "2026-02-01T16:25:01.141Z"
}
Draftbit