orders #773
- userId
-
Casimir Smitham @casimir_smitham35
- status
- shipped
- currency
- USD
- subtotal
- 1022.54
- tax
- 89.47
- shipping
- 0
- total
- 1112.01
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Overview
orders / #773
#773
#773
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orders/773" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orders/773" ); const order = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/orders.d.ts https://example-data.com/types/orders.d.ts
import type { Order } from "./types/orders";
const res = await fetch(
"https://example-data.com/api/v1/orders/773"
);
const order = (await res.json()) as Order; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orders/773"
)
order = res.json() Response
{
"id": 773,
"userId": 16,
"status": "shipped",
"currency": "USD",
"subtotal": 1022.54,
"tax": 89.47,
"shipping": 0,
"total": 1112.01,
"placedAt": "2026-01-16T22:26:46.719Z",
"shippedAt": "2026-01-19T15:51:45.405Z",
"deliveredAt": null,
"createdAt": "2026-01-16T22:26:46.719Z",
"updatedAt": "2026-01-19T15:51:45.405Z"
}