example-data.com

orders / #440

userId
Ericka DuBuque @ericka.dubuque
status
shipped
currency
USD
subtotal
1282.48
tax
112.22
shipping
0
total
1394.7
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orders/440"
)
order = res.json()
{
  "id": 440,
  "userId": 23,
  "status": "shipped",
  "currency": "USD",
  "subtotal": 1282.48,
  "tax": 112.22,
  "shipping": 0,
  "total": 1394.7,
  "placedAt": "2026-03-18T06:28:29.163Z",
  "shippedAt": "2026-03-19T10:55:38.580Z",
  "deliveredAt": null,
  "createdAt": "2026-03-18T06:28:29.163Z",
  "updatedAt": "2026-03-19T10:55:38.580Z"
}
Draftbit