cart-items / #196
- cartId
- carts/70
- productId
-
Recycled Plastic Tuna USD42.64
- quantity
- 2
- unitPrice
- 42.64
- addedAt
Component variants
Medium
#196
#196
Small
cart-items/196 Related
References
curl -sS \
"https://example-data.com/api/v1/cart-items/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cart-items/196"
);
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/196"
);
const cartItem = (await res.json()) as CartItem;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/196"
)
cart_item = res.json() {
"id": 196,
"cartId": 70,
"productId": 121,
"quantity": 2,
"unitPrice": 42.64,
"addedAt": "2025-09-07T09:17:25.074Z"
}