example-data.com

wishlists / #220

userId
Wallace Batz @wallace_batz
name
Want Later
isPublic
false
productIds
[
  3,
  174,
  94,
  66,
  141,
  81,
  178,
  64,
  165,
  56
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/220"
)
wishlist = res.json()
{
  "id": 220,
  "userId": 229,
  "name": "Want Later",
  "isPublic": false,
  "productIds": [
    3,
    174,
    94,
    66,
    141,
    81,
    178,
    64,
    165,
    56
  ],
  "createdAt": "2026-05-19T13:41:46.000Z",
  "updatedAt": "2026-05-21T22:28:42.630Z"
}
Draftbit