example-data.com

orders / #314

userId
Velma Jerde @velma.jerde56
status
delivered
currency
USD
subtotal
1383.91
tax
121.09
shipping
0
total
1505
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orders/314"
)
order = res.json()
{
  "id": 314,
  "userId": 93,
  "status": "delivered",
  "currency": "USD",
  "subtotal": 1383.91,
  "tax": 121.09,
  "shipping": 0,
  "total": 1505,
  "placedAt": "2026-02-19T13:25:19.235Z",
  "shippedAt": "2026-02-21T03:24:03.609Z",
  "deliveredAt": "2026-02-24T15:50:09.892Z",
  "createdAt": "2026-02-19T13:25:19.235Z",
  "updatedAt": "2026-02-24T15:50:09.892Z"
}
Draftbit