cart-items / #191
- cartId
- carts/69
- productId
-
Fresh Plastic Computer USD460.89
- quantity
- 3
- unitPrice
- 460.89
- addedAt
Component variants
Medium
#191
#191
Small
cart-items/191 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/191" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/191"
);
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/191"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/191"
)
cart_item = res.json() {
"id": 191,
"cartId": 69,
"productId": 119,
"quantity": 3,
"unitPrice": 460.89,
"addedAt": "2026-01-02T16:10:12.446Z"
}