orders #752
- userId
-
Earlene Wisozk @earlene.wisozk
- status
- shipped
- currency
- USD
- subtotal
- 1884.64
- tax
- 164.91
- shipping
- 0
- total
- 2049.55
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Overview
orders / #752
#752
#752
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orders/752" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orders/752" ); 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/752"
);
const order = (await res.json()) as Order; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orders/752"
)
order = res.json() Response
{
"id": 752,
"userId": 216,
"status": "shipped",
"currency": "USD",
"subtotal": 1884.64,
"tax": 164.91,
"shipping": 0,
"total": 2049.55,
"placedAt": "2024-08-19T16:20:16.086Z",
"shippedAt": "2024-08-21T11:31:57.720Z",
"deliveredAt": null,
"createdAt": "2024-08-19T16:20:16.086Z",
"updatedAt": "2024-08-21T11:31:57.720Z"
}