cart-items / #216
- cartId
- carts/77
- productId
-
Small Silk Mouse USD94.19
- quantity
- 3
- unitPrice
- 94.19
- addedAt
Component variants
Medium
#216
#216
Small
cart-items/216 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/216"
);
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/216"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/216"
)
cart_item = res.json() {
"id": 216,
"cartId": 77,
"productId": 110,
"quantity": 3,
"unitPrice": 94.19,
"addedAt": "2025-09-25T02:18:04.507Z"
}