carts / #29
- userId
-
Maymie Boehm @maymie.boehm90
- currency
- USD
- subtotal
- 1996.89
- itemCount
- 5
- updatedAt
- createdAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/carts/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/carts/29"
);
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/29"
);
const cart = (await res.json()) as Cart;import requests
res = requests.get(
"https://example-data.com/api/v1/carts/29"
)
cart = res.json() {
"id": 29,
"userId": 48,
"currency": "USD",
"subtotal": 1996.89,
"itemCount": 5,
"updatedAt": "2026-03-03T16:22:38.292Z",
"createdAt": "2026-01-24T07:28:05.444Z"
}