orders #485
- userId
-
Mazie Douglas @mazie_douglas
- status
- refunded
- currency
- USD
- subtotal
- 720.21
- tax
- 63.02
- shipping
- 0
- total
- 783.23
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Overview
orders / #485
#485
#485
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orders/485" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orders/485" ); 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/485"
);
const order = (await res.json()) as Order; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orders/485"
)
order = res.json() Response
{
"id": 485,
"userId": 89,
"status": "refunded",
"currency": "USD",
"subtotal": 720.21,
"tax": 63.02,
"shipping": 0,
"total": 783.23,
"placedAt": "2025-07-13T10:48:52.939Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-07-13T10:48:52.939Z",
"updatedAt": "2025-07-13T10:48:52.939Z"
}