example-data.com

wishlists / #207

userId
Roma Durgan @roma.durgan
name
Summer Picks
isPublic
true
productIds
[
  65,
  86,
  186,
  112,
  168
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/207"
)
wishlist = res.json()
{
  "id": 207,
  "userId": 215,
  "name": "Summer Picks",
  "isPublic": true,
  "productIds": [
    65,
    86,
    186,
    112,
    168
  ],
  "createdAt": "2026-03-15T09:59:50.107Z",
  "updatedAt": "2026-04-16T20:47:31.656Z"
}
Draftbit