cart-items / #142
- cartId
- carts/54
- productId
-
Awesome Granite Sausages USD471.16
- quantity
- 4
- unitPrice
- 471.16
- addedAt
Component variants
Medium
#142
#142
Small
cart-items/142 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/142"
);
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/142"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/142"
)
cart_item = res.json() {
"id": 142,
"cartId": 54,
"productId": 57,
"quantity": 4,
"unitPrice": 471.16,
"addedAt": "2025-06-17T23:31:35.462Z"
}