example-data.com

carts / #93

userId
Marlin Goldner @marlin_goldner6
currency
USD
subtotal
1923.66
itemCount
8
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/carts/93"
)
cart = res.json()
{
  "id": 93,
  "userId": 160,
  "currency": "USD",
  "subtotal": 1923.66,
  "itemCount": 8,
  "updatedAt": "2026-02-18T14:33:35.374Z",
  "createdAt": "2025-05-24T08:20:05.658Z"
}
Draftbit