cart-items / #134
- cartId
- carts/52
- productId
-
Elegant Silk Fish USD86.18
- quantity
- 1
- unitPrice
- 86.18
- addedAt
Component variants
Medium
#134
#134
Small
cart-items/134 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/134"
);
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/134"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/134"
)
cart_item = res.json() {
"id": 134,
"cartId": 52,
"productId": 76,
"quantity": 1,
"unitPrice": 86.18,
"addedAt": "2025-07-28T01:08:12.228Z"
}