cart-items / #165
- cartId
- carts/60
- productId
-
Refined Cotton Shoes USD295.67
- quantity
- 2
- unitPrice
- 295.67
- addedAt
Component variants
Medium
#165
#165
Small
cart-items/165 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/165" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/165"
);
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/165"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/165"
)
cart_item = res.json() {
"id": 165,
"cartId": 60,
"productId": 194,
"quantity": 2,
"unitPrice": 295.67,
"addedAt": "2026-02-16T17:35:53.278Z"
}