example-data.com

orders / #165

userId
Simeon Heathcote @simeon_heathcote75
status
cancelled
currency
USD
subtotal
1187.08
tax
103.87
shipping
0
total
1290.95
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/orders/165" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/orders/165"
);
const order = await res.json();
import type { Order } from "https://example-data.com/types/orders.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/orders/165"
);
const order = (await res.json()) as Order;
import requests

res = requests.get(
    "https://example-data.com/api/v1/orders/165"
)
order = res.json()
{
  "id": 165,
  "userId": 224,
  "status": "cancelled",
  "currency": "USD",
  "subtotal": 1187.08,
  "tax": 103.87,
  "shipping": 0,
  "total": 1290.95,
  "placedAt": "2025-02-17T15:06:16.510Z",
  "shippedAt": null,
  "deliveredAt": null,
  "createdAt": "2025-02-17T15:06:16.510Z",
  "updatedAt": "2025-02-17T15:06:16.510Z"
}
Draftbit