example-data.com

carts / #69

userId
Sam Hegmann-Jast @sam_hegmann-jast86
currency
USD
subtotal
4619.72
itemCount
14
updatedAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/carts/69" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/carts/69"
);
const cart = await res.json();
import type { Cart } from "https://example-data.com/types/carts.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/carts/69"
);
const cart = (await res.json()) as Cart;
import requests

res = requests.get(
    "https://example-data.com/api/v1/carts/69"
)
cart = res.json()
{
  "id": 69,
  "userId": 114,
  "currency": "USD",
  "subtotal": 4619.72,
  "itemCount": 14,
  "updatedAt": "2026-05-15T05:21:15.465Z",
  "createdAt": "2025-10-19T06:10:32.646Z"
}
Draftbit