carts / #89
- userId
-
Sheridan Turcotte @sheridan.turcotte
- currency
- USD
- subtotal
- 3830.15
- itemCount
- 13
- updatedAt
- createdAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/carts/89" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/carts/89"
);
const cart = await res.json();import type { Cart } from "https://example-data.com/types/carts.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/carts/89"
);
const cart = (await res.json()) as Cart;import requests
res = requests.get(
"https://example-data.com/api/v1/carts/89"
)
cart = res.json() {
"id": 89,
"userId": 153,
"currency": "USD",
"subtotal": 3830.15,
"itemCount": 13,
"updatedAt": "2025-12-20T20:20:40.997Z",
"createdAt": "2025-09-28T23:27:44.511Z"
}