example-data.com

wishlists / #190

userId
Consuelo Borer @consuelo.borer
name
Back to School
isPublic
false
productIds
[
  100,
  133,
  150,
  191,
  149,
  101,
  21,
  122,
  130,
  179
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/190"
)
wishlist = res.json()
{
  "id": 190,
  "userId": 200,
  "name": "Back to School",
  "isPublic": false,
  "productIds": [
    100,
    133,
    150,
    191,
    149,
    101,
    21,
    122,
    130,
    179
  ],
  "createdAt": "2026-03-11T19:56:56.894Z",
  "updatedAt": "2026-04-09T23:01:07.914Z"
}
Draftbit