cart-items / #159
- cartId
- carts/58
- productId
-
Fantastic Aluminum Keyboard USD54.30
- quantity
- 4
- unitPrice
- 54.3
- addedAt
Component variants
Medium
#159
#159
Small
cart-items/159 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/159"
);
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/159"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/159"
)
cart_item = res.json() {
"id": 159,
"cartId": 58,
"productId": 102,
"quantity": 4,
"unitPrice": 54.3,
"addedAt": "2025-10-14T02:35:00.826Z"
}