food-orders
food-orders
Page 7 of 10.
- food-orders/145
- food-orders/146
- food-orders/147
- food-orders/148
- food-orders/149
- food-orders/150
- food-orders/151
- food-orders/152
- food-orders/153
- food-orders/154
- food-orders/155
- food-orders/156
- food-orders/157
- food-orders/158
- food-orders/159
- food-orders/160
- food-orders/161
- food-orders/162
- food-orders/163
- food-orders/164
- food-orders/165
- food-orders/166
- food-orders/167
- food-orders/168
- userId
-
Carmel Schultz @carmel.schultz
- restaurantId
- Collins Group · Murrieta · ★ 2.8
- items
-
[ { "menuItemId": 302, "quantity": 3, "unitPrice": 47.36, "lineTotal": 142.08 }, { "menuItemId": 293, "quantity": 4, "unitPrice": 25.88, "lineTotal": 103.52 }, { "menuItemId": 297, "quantity": 3, "unitPrice": 7.24, "lineTotal": 21.72 }, { "menuItemId": 290, "quantity": 3, "unitPrice": 23.1, "lineTotal": 69.3 } ] - subtotal
- 336.62
- deliveryFee
- 2.3
- tip
- 0.6
- total
- 339.52
- currency
- USD
- status
- delivered
- placedAt
- deliveredAt
- userId
-
Kaden Brekke @kaden_brekke
- restaurantId
- Hand Inc · Costa Mesa · ★ 3.2
- items
-
[ { "menuItemId": 351, "quantity": 1, "unitPrice": 32.29, "lineTotal": 32.29 }, { "menuItemId": 358, "quantity": 4, "unitPrice": 60.89, "lineTotal": 243.56 }, { "menuItemId": 346, "quantity": 1, "unitPrice": 68.02, "lineTotal": 68.02 } ] - subtotal
- 343.87
- deliveryFee
- 3.97
- tip
- 11.18
- total
- 359.02
- currency
- USD
- status
- placed
- placedAt
- deliveredAt
- —
- userId
-
Adelia Roberts @adelia_roberts0
- restaurantId
- Bartoletti LLC · Shannychester · ★ 3.3
- items
-
[ { "menuItemId": 740, "quantity": 3, "unitPrice": 49.23, "lineTotal": 147.69 }, { "menuItemId": 746, "quantity": 4, "unitPrice": 33.22, "lineTotal": 132.88 }, { "menuItemId": 737, "quantity": 2, "unitPrice": 72.62, "lineTotal": 145.24 } ] - subtotal
- 425.81
- deliveryFee
- 3.24
- tip
- 11.87
- total
- 440.92
- currency
- USD
- status
- cancelled
- placedAt
- deliveredAt
- —
- userId
-
Everett Yundt @everett_yundt11
- restaurantId
- Mills, Kassulke and Marquardt · Jeffersonville · ★ 3.6
- items
-
[ { "menuItemId": 455, "quantity": 3, "unitPrice": 22.94, "lineTotal": 68.82 }, { "menuItemId": 446, "quantity": 1, "unitPrice": 13.06, "lineTotal": 13.06 }, { "menuItemId": 443, "quantity": 4, "unitPrice": 17.94, "lineTotal": 71.76 }, { "menuItemId": 444, "quantity": 4, "unitPrice": 24.4, "lineTotal": 97.6 }, { "menuItemId": 448, "quantity": 4, "unitPrice": 72.84, "lineTotal": 291.36 } ] - subtotal
- 542.6
- deliveryFee
- 4.64
- tip
- 8.02
- total
- 555.26
- currency
- USD
- status
- cancelled
- placedAt
- deliveredAt
- —
- userId
-
Hermina West @hermina.west3
- restaurantId
- Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
- items
-
[ { "menuItemId": 559, "quantity": 3, "unitPrice": 48.21, "lineTotal": 144.63 } ] - subtotal
- 144.63
- deliveryFee
- 7.2
- tip
- 5.9
- total
- 157.73
- currency
- USD
- status
- out_for_delivery
- placedAt
- deliveredAt
- —
- userId
-
Tillman Breitenberg @tillman_breitenberg54
- restaurantId
- Gulgowski, Terry and Funk · North Stephaniefort · ★ 4.9
- items
-
[ { "menuItemId": 655, "quantity": 3, "unitPrice": 43.69, "lineTotal": 131.07 }, { "menuItemId": 647, "quantity": 2, "unitPrice": 12.05, "lineTotal": 24.1 }, { "menuItemId": 652, "quantity": 1, "unitPrice": 37.93, "lineTotal": 37.93 }, { "menuItemId": 661, "quantity": 4, "unitPrice": 31.86, "lineTotal": 127.44 }, { "menuItemId": 644, "quantity": 4, "unitPrice": 45.49, "lineTotal": 181.96 } ] - subtotal
- 502.5
- deliveryFee
- 3.85
- tip
- 1.42
- total
- 507.77
- 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": 145,
"userId": 156,
"restaurantId": 19,
"items": [
{
"menuItemId": 302,
"quantity": 3,
"unitPrice": 47.36,
"lineTotal": 142.08
},
{
"menuItemId": 293,
"quantity": 4,
"unitPrice": 25.88,
"lineTotal": 103.52
},
{
"menuItemId": 297,
"quantity": 3,
"unitPrice": 7.24,
"lineTotal": 21.72
},
{
"menuItemId": 290,
"quantity": 3,
"unitPrice": 23.1,
"lineTotal": 69.3
}
],
"subtotal": 336.62,
"deliveryFee": 2.3,
"tip": 0.6,
"total": 339.52,
"currency": "USD",
"status": "delivered",
"placedAt": "2025-05-27T17:33:31.562Z",
"deliveredAt": "2025-05-27T19:28:14.485Z"
},
{
"id": 146,
"userId": 67,
"restaurantId": 23,
"items": [
{
"menuItemId": 351,
"quantity": 1,
"unitPrice": 32.29,
"lineTotal": 32.29
},
{
"menuItemId": 358,
"quantity": 4,
"unitPrice": 60.89,
"lineTotal": 243.56
},
{
"menuItemId": 346,
"quantity": 1,
"unitPrice": 68.02,
"lineTotal": 68.02
}
],
"subtotal": 343.87,
"deliveryFee": 3.97,
"tip": 11.18,
"total": 359.02,
"currency": "USD",
"status": "placed",
"placedAt": "2025-01-06T00:54:34.480Z",
"deliveredAt": null
},
{
"id": 147,
"userId": 231,
"restaurantId": 49,
"items": [
{
"menuItemId": 740,
"quantity": 3,
"unitPrice": 49.23,
"lineTotal": 147.69
},
{
"menuItemId": 746,
"quantity": 4,
"unitPrice": 33.22,
"lineTotal": 132.88
},
{
"menuItemId": 737,
"quantity": 2,
"unitPrice": 72.62,
"lineTotal": 145.24
}
],
"subtotal": 425.81,
"deliveryFee": 3.24,
"tip": 11.87,
"total": 440.92,
"currency": "USD",
"status": "cancelled",
"placedAt": "2024-12-06T21:07:39.548Z",
"deliveredAt": null
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/food-orders?page=7",
"next": "/api/v1/food-orders?page=8",
"prev": "/api/v1/food-orders?page=6"
}
}