example-data.com

food-orders / #17

userId
Hermina West @hermina.west3
restaurantId
Mayert LLC · Darianaburgh · ★ 4.4
items
[
  {
    "menuItemId": 525,
    "quantity": 3,
    "unitPrice": 62.48,
    "lineTotal": 187.44
  }
]
subtotal
187.44
deliveryFee
6.02
tip
10.27
total
203.73
currency
USD
status
delivered
placedAt
deliveredAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/food-orders/17"
)
food_order = res.json()
{
  "id": 17,
  "userId": 51,
  "restaurantId": 36,
  "items": [
    {
      "menuItemId": 525,
      "quantity": 3,
      "unitPrice": 62.48,
      "lineTotal": 187.44
    }
  ],
  "subtotal": 187.44,
  "deliveryFee": 6.02,
  "tip": 10.27,
  "total": 203.73,
  "currency": "USD",
  "status": "delivered",
  "placedAt": "2024-08-20T16:26:23.980Z",
  "deliveredAt": "2024-08-20T17:37:21.598Z"
}
Draftbit