example-data.com
Menu
Browse docs and collections

Overview

cart-items / #1

Component variants

Related

Request

curl example

          curl -sS \
  "https://example-data.com/api/v1/cart-items/1" \
  -H "Accept: application/json"
        

JavaScript example

          const res = await fetch(
  "https://example-data.com/api/v1/cart-items/1"
);
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/1"
);
const cartItem = (await res.json()) as CartItem;
        

Python example

          import requests

res = requests.get(
    "https://example-data.com/api/v1/cart-items/1"
)
cart_item = res.json()
        

Response

{
  "id": 1,
  "cartId": 1,
  "productId": 177,
  "quantity": 2,
  "unitPrice": 47.15,
  "addedAt": "2026-03-07T06:07:41.991Z"
}