cart-items / #109
- cartId
- carts/41
- productId
-
Bespoke Wooden Keyboard USD226.39
- quantity
- 4
- unitPrice
- 226.39
- addedAt
Component variants
Medium
#109
#109
Small
cart-items/109 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/109"
);
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/109"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/109"
)
cart_item = res.json() {
"id": 109,
"cartId": 41,
"productId": 67,
"quantity": 4,
"unitPrice": 226.39,
"addedAt": "2026-04-06T20:26:48.803Z"
}