example-data.com

wishlists / #186

userId
Oliver Mitchell @oliver_mitchell50
name
Gift Ideas
isPublic
false
productIds
[
  5,
  85,
  103,
  91,
  120,
  164,
  119,
  15,
  145,
  95,
  179,
  165,
  1
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/186"
)
wishlist = res.json()
{
  "id": 186,
  "userId": 194,
  "name": "Gift Ideas",
  "isPublic": false,
  "productIds": [
    5,
    85,
    103,
    91,
    120,
    164,
    119,
    15,
    145,
    95,
    179,
    165,
    1
  ],
  "createdAt": "2025-04-09T05:45:08.520Z",
  "updatedAt": "2026-03-15T04:56:57.877Z"
}
Draftbit