example-data.com

wishlists / #73

userId
Florencio Mohr @florencio_mohr
name
Back to School
isPublic
false
productIds
[
  156,
  170,
  188,
  37,
  25,
  31,
  164
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/73"
)
wishlist = res.json()
{
  "id": 73,
  "userId": 71,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    156,
    170,
    188,
    37,
    25,
    31,
    164
  ],
  "createdAt": "2025-03-02T19:11:31.095Z",
  "updatedAt": "2025-06-26T03:31:33.256Z"
}
Draftbit