carts / #84
- userId
-
Wendy Borer @wendy_borer
- currency
- USD
- subtotal
- 2449
- itemCount
- 10
- updatedAt
- createdAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/carts/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/carts/84"
);
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/84"
);
const cart = (await res.json()) as Cart;import requests
res = requests.get(
"https://example-data.com/api/v1/carts/84"
)
cart = res.json() {
"id": 84,
"userId": 141,
"currency": "USD",
"subtotal": 2449,
"itemCount": 10,
"updatedAt": "2026-03-10T13:07:43.639Z",
"createdAt": "2025-03-17T16:35:40.114Z"
}