food-orders / #24
- userId
-
Fritz Skiles @fritz_skiles
- restaurantId
- Aufderhar - Johns · East Lorenside · ★ 4.5
- items
-
[ { "menuItemId": 1420, "quantity": 1, "unitPrice": 64.66, "lineTotal": 64.66 } ] - subtotal
- 64.66
- deliveryFee
- 1.58
- tip
- 10.93
- total
- 77.17
- currency
- USD
- status
- delivered
- placedAt
- deliveredAt
Component variants
Medium
#24
#24
Small
food-orders/24 Related
curl -sS \
"https://example-data.com/api/v1/food-orders/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/food-orders/24"
);
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/24"
);
const foodOrder = (await res.json()) as FoodOrder;import requests
res = requests.get(
"https://example-data.com/api/v1/food-orders/24"
)
food_order = res.json() {
"id": 24,
"userId": 144,
"restaurantId": 98,
"items": [
{
"menuItemId": 1420,
"quantity": 1,
"unitPrice": 64.66,
"lineTotal": 64.66
}
],
"subtotal": 64.66,
"deliveryFee": 1.58,
"tip": 10.93,
"total": 77.17,
"currency": "USD",
"status": "delivered",
"placedAt": "2026-04-22T21:51:13.986Z",
"deliveredAt": "2026-04-22T23:10:47.246Z"
}