example-data.com

food-orders / #169

userId
Judy Hackett @judy_hackett49
restaurantId
Mitchell, O'Kon and Kunde · South Janelle · ★ 3.2
items
[
  {
    "menuItemId": 342,
    "quantity": 1,
    "unitPrice": 76.35,
    "lineTotal": 76.35
  }
]
subtotal
76.35
deliveryFee
5.03
tip
6.98
total
88.36
currency
USD
status
delivered
placedAt
deliveredAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/food-orders/169"
)
food_order = res.json()
{
  "id": 169,
  "userId": 13,
  "restaurantId": 22,
  "items": [
    {
      "menuItemId": 342,
      "quantity": 1,
      "unitPrice": 76.35,
      "lineTotal": 76.35
    }
  ],
  "subtotal": 76.35,
  "deliveryFee": 5.03,
  "tip": 6.98,
  "total": 88.36,
  "currency": "USD",
  "status": "delivered",
  "placedAt": "2024-08-23T06:51:05.434Z",
  "deliveredAt": "2024-08-23T08:16:12.281Z"
}
Draftbit