example-data.com

wishlists / #145

userId
Rickie Sporer @rickie.sporer50
name
Back to School
isPublic
false
productIds
[
  139,
  106,
  169,
  31,
  25,
  103,
  98,
  19,
  171,
  101,
  76,
  16,
  116,
  22,
  118
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/145"
)
wishlist = res.json()
{
  "id": 145,
  "userId": 149,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    139,
    106,
    169,
    31,
    25,
    103,
    98,
    19,
    171,
    101,
    76,
    16,
    116,
    22,
    118
  ],
  "createdAt": "2024-11-20T08:24:14.610Z",
  "updatedAt": "2025-12-06T21:56:11.971Z"
}
Draftbit