cart-items / #190
- cartId
- carts/69
- productId
-
Refined Cotton Shoes USD295.67
- quantity
- 4
- unitPrice
- 295.67
- addedAt
Component variants
Medium
#190
#190
Small
cart-items/190 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/190"
);
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/190"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/190"
)
cart_item = res.json() {
"id": 190,
"cartId": 69,
"productId": 194,
"quantity": 4,
"unitPrice": 295.67,
"addedAt": "2025-06-07T11:10:03.795Z"
}