example-data.com

wishlists / #1

userId
Charlene Roberts @charlene_roberts
name
Summer Picks
isPublic
true
productIds
[
  47,
  86,
  28,
  137,
  59,
  95,
  111,
  135,
  158,
  174
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/1"
)
wishlist = res.json()
{
  "id": 1,
  "userId": 1,
  "name": "Summer Picks",
  "isPublic": true,
  "productIds": [
    47,
    86,
    28,
    137,
    59,
    95,
    111,
    135,
    158,
    174
  ],
  "createdAt": "2026-04-04T17:14:46.340Z",
  "updatedAt": "2026-04-13T03:20:44.226Z"
}
Draftbit