cart-items / #96
- cartId
- carts/38
- productId
-
Ergonomic Metal Fish USD59.59
- quantity
- 2
- unitPrice
- 59.59
- addedAt
Component variants
Medium
#96
#96
Small
cart-items/96 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/96"
);
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/96"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/96"
)
cart_item = res.json() {
"id": 96,
"cartId": 38,
"productId": 20,
"quantity": 2,
"unitPrice": 59.59,
"addedAt": "2025-09-21T23:01:27.592Z"
}