cart-items / #48
- cartId
- carts/17
- productId
-
Fantastic Plastic Pants USD498.19
- quantity
- 4
- unitPrice
- 498.19
- addedAt
Component variants
Medium
#48
#48
Small
cart-items/48 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/48"
);
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/48"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/48"
)
cart_item = res.json() {
"id": 48,
"cartId": 17,
"productId": 118,
"quantity": 4,
"unitPrice": 498.19,
"addedAt": "2025-12-12T19:43:23.118Z"
}