example-data.com

food-orders / #165

userId
Allan Buckridge @allan_buckridge
restaurantId
Koelpin - Lueilwitz · Salem · ★ 2.7
items
[
  {
    "menuItemId": 830,
    "quantity": 3,
    "unitPrice": 41.57,
    "lineTotal": 124.71
  },
  {
    "menuItemId": 835,
    "quantity": 2,
    "unitPrice": 39.53,
    "lineTotal": 79.06
  }
]
subtotal
203.77
deliveryFee
5.36
tip
3.57
total
212.7
currency
USD
status
out_for_delivery
placedAt
deliveredAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/food-orders/165"
)
food_order = res.json()
{
  "id": 165,
  "userId": 106,
  "restaurantId": 55,
  "items": [
    {
      "menuItemId": 830,
      "quantity": 3,
      "unitPrice": 41.57,
      "lineTotal": 124.71
    },
    {
      "menuItemId": 835,
      "quantity": 2,
      "unitPrice": 39.53,
      "lineTotal": 79.06
    }
  ],
  "subtotal": 203.77,
  "deliveryFee": 5.36,
  "tip": 3.57,
  "total": 212.7,
  "currency": "USD",
  "status": "out_for_delivery",
  "placedAt": "2025-12-30T12:44:13.116Z",
  "deliveredAt": null
}
Draftbit