example-data.com

wishlists / #39

userId
Margaretta Barrows @margaretta_barrows41
name
Back to School
isPublic
false
productIds
[
  42,
  113,
  101,
  182,
  5,
  177,
  160,
  55,
  59,
  84,
  93,
  167,
  7
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/39"
)
wishlist = res.json()
{
  "id": 39,
  "userId": 39,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    42,
    113,
    101,
    182,
    5,
    177,
    160,
    55,
    59,
    84,
    93,
    167,
    7
  ],
  "createdAt": "2025-02-03T10:54:48.104Z",
  "updatedAt": "2025-12-20T17:30:10.389Z"
}
Draftbit