carts / #58
- userId
-
Ethyl Auer @ethyl_auer89
- currency
- USD
- subtotal
- 465.48
- itemCount
- 9
- updatedAt
- createdAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/carts/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/carts/58"
);
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/58"
);
const cart = (await res.json()) as Cart;import requests
res = requests.get(
"https://example-data.com/api/v1/carts/58"
)
cart = res.json() {
"id": 58,
"userId": 95,
"currency": "USD",
"subtotal": 465.48,
"itemCount": 9,
"updatedAt": "2026-03-29T01:48:20.902Z",
"createdAt": "2026-01-18T10:25:01.351Z"
}