example-data.com

wishlists / #21

userId
Alvina Koch @alvina.koch8
name
Summer Picks
isPublic
false
productIds
[
  162,
  141,
  169,
  34,
  165,
  148,
  174,
  177,
  176,
  84,
  70
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/21"
)
wishlist = res.json()
{
  "id": 21,
  "userId": 20,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    162,
    141,
    169,
    34,
    165,
    148,
    174,
    177,
    176,
    84,
    70
  ],
  "createdAt": "2024-07-17T01:56:28.800Z",
  "updatedAt": "2025-10-05T15:32:01.166Z"
}
Draftbit