cart-items / #57
- cartId
- carts/22
- productId
-
Soft Bamboo Ball USD163.18
- quantity
- 1
- unitPrice
- 163.18
- addedAt
Component variants
Medium
#57
#57
Small
cart-items/57 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/57"
);
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/57"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/57"
)
cart_item = res.json() {
"id": 57,
"cartId": 22,
"productId": 73,
"quantity": 1,
"unitPrice": 163.18,
"addedAt": "2025-09-16T12:46:50.271Z"
}