orders #511
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- status
- delivered
- currency
- USD
- subtotal
- 3175.68
- tax
- 277.87
- shipping
- 0
- total
- 3453.55
- placedAt
- shippedAt
- deliveredAt
- createdAt
- updatedAt
Overview
orders / #511
#511
#511
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orders/511" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orders/511" ); 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/511"
);
const order = (await res.json()) as Order; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orders/511"
)
order = res.json() Response
{
"id": 511,
"userId": 35,
"status": "delivered",
"currency": "USD",
"subtotal": 3175.68,
"tax": 277.87,
"shipping": 0,
"total": 3453.55,
"placedAt": "2026-04-22T03:25:36.609Z",
"shippedAt": "2026-04-23T21:49:23.137Z",
"deliveredAt": "2026-04-26T23:20:54.934Z",
"createdAt": "2026-04-22T03:25:36.609Z",
"updatedAt": "2026-04-26T23:20:54.934Z"
}