orders #360
- userId
-
Jacynthe Sawayn @jacynthe_sawayn71
- status
- refunded
- currency
- USD
- subtotal
- 2999.51
- tax
- 262.46
- shipping
- 0
- total
- 3261.97
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Overview
orders / #360
#360
#360
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orders/360" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orders/360" ); 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/360"
);
const order = (await res.json()) as Order; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orders/360"
)
order = res.json() Response
{
"id": 360,
"userId": 146,
"status": "refunded",
"currency": "USD",
"subtotal": 2999.51,
"tax": 262.46,
"shipping": 0,
"total": 3261.97,
"placedAt": "2024-06-25T04:21:31.461Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2024-06-25T04:21:31.461Z",
"updatedAt": "2024-06-25T04:21:31.461Z"
}