cart-items / #177
- cartId
- carts/64
- productId
-
Oriental Gold Chips USD242.59
- quantity
- 2
- unitPrice
- 242.59
- addedAt
Component variants
Medium
#177
#177
Small
cart-items/177 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/177" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/177"
);
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/177"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/177"
)
cart_item = res.json() {
"id": 177,
"cartId": 64,
"productId": 111,
"quantity": 2,
"unitPrice": 242.59,
"addedAt": "2026-01-08T19:22:35.780Z"
}