cart-items / #151
- cartId
- carts/56
- productId
-
Elegant Cotton Chicken USD17.70
- quantity
- 1
- unitPrice
- 17.7
- addedAt
Component variants
Medium
#151
#151
Small
cart-items/151 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/151"
);
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/151"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/151"
)
cart_item = res.json() {
"id": 151,
"cartId": 56,
"productId": 18,
"quantity": 1,
"unitPrice": 17.7,
"addedAt": "2025-11-22T01:24:14.075Z"
}