cart-items / #123
- cartId
- carts/46
- productId
-
Intelligent Cotton Chair USD249.25
- quantity
- 2
- unitPrice
- 249.25
- addedAt
Component variants
Medium
#123
#123
Small
cart-items/123 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/123"
);
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/123"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/123"
)
cart_item = res.json() {
"id": 123,
"cartId": 46,
"productId": 117,
"quantity": 2,
"unitPrice": 249.25,
"addedAt": "2025-06-20T11:36:59.181Z"
}