example-data.com

cart-items / #203

cartId
carts/71
productId
Oriental Gold Chips USD242.59
quantity
2
unitPrice
242.59
addedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/cart-items/203" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cart-items/203"
);
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/203"
);
const cartItem = (await res.json()) as CartItem;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cart-items/203"
)
cart_item = res.json()
{
  "id": 203,
  "cartId": 71,
  "productId": 111,
  "quantity": 2,
  "unitPrice": 242.59,
  "addedAt": "2026-03-18T16:19:24.118Z"
}
Draftbit