cart-items / #92
- cartId
- carts/35
- productId
-
Practical Gold Soap USD179.88
- quantity
- 2
- unitPrice
- 179.88
- addedAt
Component variants
Medium
#92
#92
Small
cart-items/92 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/92"
);
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/92"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/92"
)
cart_item = res.json() {
"id": 92,
"cartId": 35,
"productId": 131,
"quantity": 2,
"unitPrice": 179.88,
"addedAt": "2026-01-28T01:37:49.912Z"
}