example-data.com

food-orders / #26

userId
Carley Gleichner @carley.gleichner
restaurantId
Rogahn - Kreiger · South Cathrynside · ★ 4.6
items
[
  {
    "menuItemId": 1212,
    "quantity": 3,
    "unitPrice": 21.02,
    "lineTotal": 63.06
  }
]
subtotal
63.06
deliveryFee
5.16
tip
7.58
total
75.8
currency
USD
status
delivered
placedAt
deliveredAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/food-orders/26"
)
food_order = res.json()
{
  "id": 26,
  "userId": 142,
  "restaurantId": 82,
  "items": [
    {
      "menuItemId": 1212,
      "quantity": 3,
      "unitPrice": 21.02,
      "lineTotal": 63.06
    }
  ],
  "subtotal": 63.06,
  "deliveryFee": 5.16,
  "tip": 7.58,
  "total": 75.8,
  "currency": "USD",
  "status": "delivered",
  "placedAt": "2025-05-13T08:13:41.287Z",
  "deliveredAt": "2025-05-13T11:54:51.051Z"
}
Draftbit