example-data.com

orders / #117

userId
Kamryn Rogahn @kamryn_rogahn40
status
confirmed
currency
USD
subtotal
983.96
tax
86.1
shipping
0
total
1070.06
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orders/117"
)
order = res.json()
{
  "id": 117,
  "userId": 170,
  "status": "confirmed",
  "currency": "USD",
  "subtotal": 983.96,
  "tax": 86.1,
  "shipping": 0,
  "total": 1070.06,
  "placedAt": "2026-05-08T08:43:25.169Z",
  "shippedAt": null,
  "deliveredAt": null,
  "createdAt": "2026-05-08T08:43:25.169Z",
  "updatedAt": "2026-05-08T08:43:25.169Z"
}
Draftbit