cart-items / #162
- cartId
- carts/59
- productId
-
Practical Marble Towels USD337.79
- quantity
- 2
- unitPrice
- 337.79
- addedAt
Component variants
Medium
#162
#162
Small
cart-items/162 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/162" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/162"
);
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/162"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/162"
)
cart_item = res.json() {
"id": 162,
"cartId": 59,
"productId": 81,
"quantity": 2,
"unitPrice": 337.79,
"addedAt": "2025-10-10T17:28:36.900Z"
}