cart-items / #34
- cartId
- carts/12
- productId
-
Fantastic Wooden Salad USD67.29
- quantity
- 2
- unitPrice
- 67.29
- addedAt
Component variants
Medium
#34
#34
Small
cart-items/34 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/34"
);
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/34"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/34"
)
cart_item = res.json() {
"id": 34,
"cartId": 12,
"productId": 9,
"quantity": 2,
"unitPrice": 67.29,
"addedAt": "2025-09-03T12:33:20.849Z"
}