example-data.com

food-orders / #99

userId
Marta Harvey @marta.harvey68
restaurantId
Grimes, Durgan and Grady · Fort Estelfield · ★ 4.0
items
[
  {
    "menuItemId": 1125,
    "quantity": 1,
    "unitPrice": 77.03,
    "lineTotal": 77.03
  }
]
subtotal
77.03
deliveryFee
7.85
tip
5.58
total
90.46
currency
USD
status
delivered
placedAt
deliveredAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/food-orders/99" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/food-orders/99"
);
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/99"
);
const foodOrder = (await res.json()) as FoodOrder;
import requests

res = requests.get(
    "https://example-data.com/api/v1/food-orders/99"
)
food_order = res.json()
{
  "id": 99,
  "userId": 112,
  "restaurantId": 76,
  "items": [
    {
      "menuItemId": 1125,
      "quantity": 1,
      "unitPrice": 77.03,
      "lineTotal": 77.03
    }
  ],
  "subtotal": 77.03,
  "deliveryFee": 7.85,
  "tip": 5.58,
  "total": 90.46,
  "currency": "USD",
  "status": "delivered",
  "placedAt": "2025-10-10T04:37:55.642Z",
  "deliveredAt": "2025-10-10T08:13:06.017Z"
}
Draftbit