example-data.com

food-orders / #236

userId
Marilou Douglas @marilou.douglas
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
items
[
  {
    "menuItemId": 6,
    "quantity": 3,
    "unitPrice": 48.01,
    "lineTotal": 144.03
  }
]
subtotal
144.03
deliveryFee
4.73
tip
1.4
total
150.16
currency
USD
status
delivered
placedAt
deliveredAt

Component variants

Related

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

const res = await fetch(
  "https://example-data.com/api/v1/food-orders/236"
);
const foodOrder = (await res.json()) as FoodOrder;
import requests

res = requests.get(
    "https://example-data.com/api/v1/food-orders/236"
)
food_order = res.json()
{
  "id": 236,
  "userId": 78,
  "restaurantId": 1,
  "items": [
    {
      "menuItemId": 6,
      "quantity": 3,
      "unitPrice": 48.01,
      "lineTotal": 144.03
    }
  ],
  "subtotal": 144.03,
  "deliveryFee": 4.73,
  "tip": 1.4,
  "total": 150.16,
  "currency": "USD",
  "status": "delivered",
  "placedAt": "2025-04-26T09:15:38.561Z",
  "deliveredAt": "2025-04-26T11:44:22.091Z"
}
Draftbit