example-data.com

carts / #72

userId
Leora Doyle @leora_doyle
currency
USD
subtotal
283.12
itemCount
1
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/carts/72"
)
cart = res.json()
{
  "id": 72,
  "userId": 117,
  "currency": "USD",
  "subtotal": 283.12,
  "itemCount": 1,
  "updatedAt": "2025-09-14T19:08:53.342Z",
  "createdAt": "2025-02-24T23:24:53.772Z"
}
Draftbit