cart-items / #127
- cartId
- carts/48
- productId
-
Elegant Granite Sausages USD225.20
- quantity
- 3
- unitPrice
- 225.2
- addedAt
Component variants
Medium
#127
#127
Small
cart-items/127 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/127" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/127"
);
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/127"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/127"
)
cart_item = res.json() {
"id": 127,
"cartId": 48,
"productId": 39,
"quantity": 3,
"unitPrice": 225.2,
"addedAt": "2025-05-26T18:51:55.020Z"
}