cart-items / #152
- cartId
- carts/56
- productId
-
Frozen Rubber Table USD435.79
- quantity
- 1
- unitPrice
- 435.79
- addedAt
Component variants
Medium
#152
#152
Small
cart-items/152 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/152" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/152"
);
const cartItem = await res.json();import type { CartItem } from "https://example-data.com/types/cart-items.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cart-items/152"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/152"
)
cart_item = res.json() {
"id": 152,
"cartId": 56,
"productId": 89,
"quantity": 1,
"unitPrice": 435.79,
"addedAt": "2026-01-02T09:39:15.846Z"
}