cart-items / #231
- cartId
- carts/82
- productId
-
Ergonomic Bronze Bacon USD151.09
- quantity
- 3
- unitPrice
- 151.09
- addedAt
Component variants
Medium
#231
#231
Small
cart-items/231 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/231"
);
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/231"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/231"
)
cart_item = res.json() {
"id": 231,
"cartId": 82,
"productId": 166,
"quantity": 3,
"unitPrice": 151.09,
"addedAt": "2025-09-02T10:12:51.587Z"
}