cart-items / #185
- cartId
- carts/67
- productId
-
Tasty Gold Salad USD40.59
- quantity
- 2
- unitPrice
- 40.59
- addedAt
Component variants
Medium
#185
#185
Small
cart-items/185 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/185"
);
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/185"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/185"
)
cart_item = res.json() {
"id": 185,
"cartId": 67,
"productId": 126,
"quantity": 2,
"unitPrice": 40.59,
"addedAt": "2025-06-12T12:40:47.997Z"
}