example-data.com

wishlists / #8

userId
Einar Volkman @einar_volkman69
name
Back to School
isPublic
false
productIds
[
  181,
  128,
  45,
  81,
  163
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/8"
)
wishlist = res.json()
{
  "id": 8,
  "userId": 7,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    181,
    128,
    45,
    81,
    163
  ],
  "createdAt": "2026-02-23T02:10:00.171Z",
  "updatedAt": "2026-04-30T03:25:32.690Z"
}
Draftbit