example-data.com

food-orders

food-orders

Page 4 of 10.

userId
Ludwig Stiedemann @ludwig_stiedemann
restaurantId
Thiel and Sons · Shyanneville · ★ 4.0
items
[
  {
    "menuItemId": 1414,
    "quantity": 3,
    "unitPrice": 71.75,
    "lineTotal": 215.25
  },
  {
    "menuItemId": 1411,
    "quantity": 4,
    "unitPrice": 75.28,
    "lineTotal": 301.12
  },
  {
    "menuItemId": 1415,
    "quantity": 1,
    "unitPrice": 34.56,
    "lineTotal": 34.56
  },
  {
    "menuItemId": 1413,
    "quantity": 4,
    "unitPrice": 10.43,
    "lineTotal": 41.72
  }
]
subtotal
592.65
deliveryFee
0.13
tip
2.78
total
595.56
currency
USD
status
delivered
placedAt
deliveredAt
userId
Rupert Lebsack @rupert.lebsack
restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
items
[
  {
    "menuItemId": 184,
    "quantity": 1,
    "unitPrice": 77.13,
    "lineTotal": 77.13
  },
  {
    "menuItemId": 182,
    "quantity": 3,
    "unitPrice": 26.93,
    "lineTotal": 80.79
  },
  {
    "menuItemId": 183,
    "quantity": 3,
    "unitPrice": 14.2,
    "lineTotal": 42.6
  },
  {
    "menuItemId": 186,
    "quantity": 1,
    "unitPrice": 64.97,
    "lineTotal": 64.97
  }
]
subtotal
265.49
deliveryFee
1.44
tip
6.6
total
273.53
currency
USD
status
cancelled
placedAt
deliveredAt
userId
Zachariah Herzog @zachariah_herzog42
restaurantId
Kshlerin - Champlin · Marquardtfort · ★ 4.4
items
[
  {
    "menuItemId": 158,
    "quantity": 2,
    "unitPrice": 5.91,
    "lineTotal": 11.82
  },
  {
    "menuItemId": 157,
    "quantity": 2,
    "unitPrice": 44.83,
    "lineTotal": 89.66
  },
  {
    "menuItemId": 162,
    "quantity": 4,
    "unitPrice": 46.06,
    "lineTotal": 184.24
  },
  {
    "menuItemId": 151,
    "quantity": 3,
    "unitPrice": 11.98,
    "lineTotal": 35.94
  },
  {
    "menuItemId": 156,
    "quantity": 4,
    "unitPrice": 30.49,
    "lineTotal": 121.96
  }
]
subtotal
443.62
deliveryFee
4.3
tip
6.97
total
454.89
currency
USD
status
cancelled
placedAt
deliveredAt
userId
Fritz Skiles @fritz_skiles
restaurantId
Parisian and Sons · New Timmothy · ★ 3.9
items
[
  {
    "menuItemId": 1046,
    "quantity": 2,
    "unitPrice": 44.13,
    "lineTotal": 88.26
  },
  {
    "menuItemId": 1048,
    "quantity": 1,
    "unitPrice": 43.73,
    "lineTotal": 43.73
  }
]
subtotal
131.99
deliveryFee
0.93
tip
5.76
total
138.68
currency
USD
status
delivered
placedAt
deliveredAt
userId
Stephan Heller @stephan.heller
restaurantId
O'Keefe - Cruickshank · Covina · ★ 4.8
items
[
  {
    "menuItemId": 1328,
    "quantity": 3,
    "unitPrice": 59.55,
    "lineTotal": 178.65
  },
  {
    "menuItemId": 1316,
    "quantity": 4,
    "unitPrice": 60.49,
    "lineTotal": 241.96
  }
]
subtotal
420.61
deliveryFee
7.68
tip
4.9
total
433.19
currency
USD
status
delivered
placedAt
deliveredAt
userId
Dovie Gorczany @dovie.gorczany
restaurantId
Rodriguez, Nicolas and Schneider · New Anthony · ★ 4.9
items
[
  {
    "menuItemId": 754,
    "quantity": 1,
    "unitPrice": 67.38,
    "lineTotal": 67.38
  },
  {
    "menuItemId": 759,
    "quantity": 4,
    "unitPrice": 3.05,
    "lineTotal": 12.2
  },
  {
    "menuItemId": 761,
    "quantity": 2,
    "unitPrice": 24.15,
    "lineTotal": 48.3
  },
  {
    "menuItemId": 755,
    "quantity": 2,
    "unitPrice": 59.2,
    "lineTotal": 118.4
  },
  {
    "menuItemId": 760,
    "quantity": 1,
    "unitPrice": 78.81,
    "lineTotal": 78.81
  }
]
subtotal
325.09
deliveryFee
5.09
tip
1.47
total
331.65
currency
USD
status
delivered
placedAt
deliveredAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/food-orders?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/food-orders?limit=25"
);
const { data, meta } = await res.json();
import type { FoodOrder, ListEnvelope } from "https://example-data.com/types/food-orders.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/food-orders?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<FoodOrder>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/food-orders",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 73,
      "userId": 132,
      "restaurantId": 97,
      "items": [
        {
          "menuItemId": 1414,
          "quantity": 3,
          "unitPrice": 71.75,
          "lineTotal": 215.25
        },
        {
          "menuItemId": 1411,
          "quantity": 4,
          "unitPrice": 75.28,
          "lineTotal": 301.12
        },
        {
          "menuItemId": 1415,
          "quantity": 1,
          "unitPrice": 34.56,
          "lineTotal": 34.56
        },
        {
          "menuItemId": 1413,
          "quantity": 4,
          "unitPrice": 10.43,
          "lineTotal": 41.72
        }
      ],
      "subtotal": 592.65,
      "deliveryFee": 0.13,
      "tip": 2.78,
      "total": 595.56,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-03-16T13:23:28.567Z",
      "deliveredAt": "2025-03-16T17:19:49.939Z"
    },
    {
      "id": 74,
      "userId": 249,
      "restaurantId": 13,
      "items": [
        {
          "menuItemId": 184,
          "quantity": 1,
          "unitPrice": 77.13,
          "lineTotal": 77.13
        },
        {
          "menuItemId": 182,
          "quantity": 3,
          "unitPrice": 26.93,
          "lineTotal": 80.79
        },
        {
          "menuItemId": 183,
          "quantity": 3,
          "unitPrice": 14.2,
          "lineTotal": 42.6
        },
        {
          "menuItemId": 186,
          "quantity": 1,
          "unitPrice": 64.97,
          "lineTotal": 64.97
        }
      ],
      "subtotal": 265.49,
      "deliveryFee": 1.44,
      "tip": 6.6,
      "total": 273.53,
      "currency": "USD",
      "status": "cancelled",
      "placedAt": "2025-06-07T17:42:41.169Z",
      "deliveredAt": null
    },
    {
      "id": 75,
      "userId": 15,
      "restaurantId": 11,
      "items": [
        {
          "menuItemId": 158,
          "quantity": 2,
          "unitPrice": 5.91,
          "lineTotal": 11.82
        },
        {
          "menuItemId": 157,
          "quantity": 2,
          "unitPrice": 44.83,
          "lineTotal": 89.66
        },
        {
          "menuItemId": 162,
          "quantity": 4,
          "unitPrice": 46.06,
          "lineTotal": 184.24
        },
        {
          "menuItemId": 151,
          "quantity": 3,
          "unitPrice": 11.98,
          "lineTotal": 35.94
        },
        {
          "menuItemId": 156,
          "quantity": 4,
          "unitPrice": 30.49,
          "lineTotal": 121.96
        }
      ],
      "subtotal": 443.62,
      "deliveryFee": 4.3,
      "tip": 6.97,
      "total": 454.89,
      "currency": "USD",
      "status": "cancelled",
      "placedAt": "2025-12-01T03:16:57.032Z",
      "deliveredAt": null
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=4",
    "next": "/api/v1/food-orders?page=5",
    "prev": "/api/v1/food-orders?page=3"
  }
}
Draftbit