example-data.com

wishlists / #200

userId
Otho Nikolaus @otho.nikolaus99
name
Summer Picks
isPublic
true
productIds
[
  46,
  91,
  39,
  90,
  16,
  94,
  47,
  99,
  72
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/200"
)
wishlist = res.json()
{
  "id": 200,
  "userId": 209,
  "name": "Summer Picks",
  "isPublic": true,
  "productIds": [
    46,
    91,
    39,
    90,
    16,
    94,
    47,
    99,
    72
  ],
  "createdAt": "2024-10-18T04:20:41.417Z",
  "updatedAt": "2026-03-28T16:37:15.485Z"
}
Draftbit