example-data.com

carts / #50

userId
Phyllis Hyatt @phyllis_hyatt83
currency
USD
subtotal
601.22
itemCount
6
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/carts/50"
)
cart = res.json()
{
  "id": 50,
  "userId": 84,
  "currency": "USD",
  "subtotal": 601.22,
  "itemCount": 6,
  "updatedAt": "2025-12-08T12:56:38.832Z",
  "createdAt": "2025-08-26T18:55:11.851Z"
}
Draftbit