example-data.com

wishlists / #215

userId
Rubye Emmerich @rubye.emmerich
name
Summer Picks
isPublic
true
productIds
[
  4,
  61,
  6,
  195,
  75,
  50,
  188
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/215"
)
wishlist = res.json()
{
  "id": 215,
  "userId": 225,
  "name": "Summer Picks",
  "isPublic": true,
  "productIds": [
    4,
    61,
    6,
    195,
    75,
    50,
    188
  ],
  "createdAt": "2024-09-27T08:08:16.406Z",
  "updatedAt": "2025-07-06T23:00:03.538Z"
}
Draftbit