cart-items / #223
- cartId
- carts/78
- productId
-
Practical Bamboo Towels USD98.49
- quantity
- 2
- unitPrice
- 98.49
- addedAt
Component variants
Medium
#223
#223
Small
cart-items/223 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/223" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/223"
);
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/223"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/223"
)
cart_item = res.json() {
"id": 223,
"cartId": 78,
"productId": 127,
"quantity": 2,
"unitPrice": 98.49,
"addedAt": "2026-03-04T04:30:51.979Z"
}