cart-items / #240
- cartId
- carts/84
- productId
-
Bespoke Bamboo Hat USD259.99
- quantity
- 1
- unitPrice
- 259.99
- addedAt
Component variants
Medium
#240
#240
Small
cart-items/240 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/240"
);
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/240"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/240"
)
cart_item = res.json() {
"id": 240,
"cartId": 84,
"productId": 48,
"quantity": 1,
"unitPrice": 259.99,
"addedAt": "2026-01-22T11:32:31.985Z"
}