example-data.com

orders / #93

userId
Ericka DuBuque @ericka.dubuque
status
cancelled
currency
USD
subtotal
2258.8
tax
197.65
shipping
0
total
2456.45
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Component variants

Related

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

const res = await fetch(
  "https://example-data.com/api/v1/orders/93"
);
const order = (await res.json()) as Order;
import requests

res = requests.get(
    "https://example-data.com/api/v1/orders/93"
)
order = res.json()
{
  "id": 93,
  "userId": 23,
  "status": "cancelled",
  "currency": "USD",
  "subtotal": 2258.8,
  "tax": 197.65,
  "shipping": 0,
  "total": 2456.45,
  "placedAt": "2026-04-07T16:41:35.675Z",
  "shippedAt": null,
  "deliveredAt": null,
  "createdAt": "2026-04-07T16:41:35.675Z",
  "updatedAt": "2026-04-07T16:41:35.675Z"
}
Draftbit