example-data.com

carts / #63

userId
Jermain Kshlerin @jermain_kshlerin51
currency
USD
subtotal
263.29
itemCount
1
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/carts/63"
)
cart = res.json()
{
  "id": 63,
  "userId": 104,
  "currency": "USD",
  "subtotal": 263.29,
  "itemCount": 1,
  "updatedAt": "2026-03-30T18:20:41.888Z",
  "createdAt": "2025-08-25T00:14:46.890Z"
}
Draftbit