cart-items #339
- cartId
- carts/113
- productId
-
Fresh Steel Pants USD82.34
- quantity
- 4
- unitPrice
- 82.34
- addedAt
Overview
cart-items / #339
#339
#339
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cart-items/339" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cart-items/339" ); const cartItem = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cart-items.d.ts https://example-data.com/types/cart-items.d.ts
import type { CartItem } from "./types/cart-items";
const res = await fetch(
"https://example-data.com/api/v1/cart-items/339"
);
const cartItem = (await res.json()) as CartItem; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items/339"
)
cart_item = res.json() Response
{
"id": 339,
"cartId": 113,
"productId": 160,
"quantity": 4,
"unitPrice": 82.34,
"addedAt": "2025-05-25T05:39:30.296Z"
}