example-data.com

wishlists / #95

userId
Camron O'Conner @camron.oconner54
name
Saved for Later
isPublic
true
productIds
[
  74,
  84,
  78,
  119,
  196
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/95"
)
wishlist = res.json()
{
  "id": 95,
  "userId": 94,
  "name": "Saved for Later",
  "isPublic": true,
  "productIds": [
    74,
    84,
    78,
    119,
    196
  ],
  "createdAt": "2024-09-15T15:46:04.055Z",
  "updatedAt": "2026-01-08T14:32:01.734Z"
}
Draftbit