example-data.com

wishlists / #165

userId
Aylin Sanford @aylin.sanford
name
Summer Picks
isPublic
false
productIds
[
  104,
  7,
  56,
  105,
  167
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/165"
)
wishlist = res.json()
{
  "id": 165,
  "userId": 173,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    104,
    7,
    56,
    105,
    167
  ],
  "createdAt": "2025-01-04T17:38:13.732Z",
  "updatedAt": "2025-08-19T18:18:27.873Z"
}
Draftbit