example-data.com

wishlists / #10

userId
Anne Hamill @anne_hamill75
name
Want Later
isPublic
false
productIds
[
  2,
  195,
  150,
  153
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/10"
)
wishlist = res.json()
{
  "id": 10,
  "userId": 9,
  "name": "Want Later",
  "isPublic": false,
  "productIds": [
    2,
    195,
    150,
    153
  ],
  "createdAt": "2025-05-09T01:05:58.054Z",
  "updatedAt": "2025-11-23T10:18:08.316Z"
}
Draftbit