example-data.com

food-orders

food-orders

Page 3 of 10.

userId
Vincenza Zemlak-Collier @vincenza_zemlak-collier
restaurantId
O'Keefe - Cruickshank · Covina · ★ 4.8
items
[
  {
    "menuItemId": 1329,
    "quantity": 4,
    "unitPrice": 16.64,
    "lineTotal": 66.56
  },
  {
    "menuItemId": 1324,
    "quantity": 2,
    "unitPrice": 9.34,
    "lineTotal": 18.68
  }
]
subtotal
85.24
deliveryFee
4.77
tip
3.81
total
93.82
currency
USD
status
delivered
placedAt
deliveredAt
userId
Mara Johnson @mara.johnson17
restaurantId
Weimann, Herzog and Wisoky · Grahamberg · ★ 3.2
items
[
  {
    "menuItemId": 1282,
    "quantity": 4,
    "unitPrice": 13.28,
    "lineTotal": 53.12
  },
  {
    "menuItemId": 1284,
    "quantity": 3,
    "unitPrice": 66.71,
    "lineTotal": 200.13
  },
  {
    "menuItemId": 1285,
    "quantity": 1,
    "unitPrice": 8.63,
    "lineTotal": 8.63
  },
  {
    "menuItemId": 1280,
    "quantity": 1,
    "unitPrice": 8.8,
    "lineTotal": 8.8
  }
]
subtotal
270.68
deliveryFee
6.12
tip
9.35
total
286.15
currency
USD
status
delivered
placedAt
deliveredAt
userId
Alexa Rippin @alexa_rippin25
restaurantId
Goldner - Labadie · Kylechester · ★ 3.3
items
[
  {
    "menuItemId": 974,
    "quantity": 2,
    "unitPrice": 76.81,
    "lineTotal": 153.62
  },
  {
    "menuItemId": 987,
    "quantity": 4,
    "unitPrice": 32.67,
    "lineTotal": 130.68
  },
  {
    "menuItemId": 978,
    "quantity": 1,
    "unitPrice": 15.99,
    "lineTotal": 15.99
  }
]
subtotal
300.29
deliveryFee
7.6
tip
2.01
total
309.9
currency
USD
status
delivered
placedAt
deliveredAt
userId
Jacynthe Sawayn @jacynthe_sawayn71
restaurantId
Halvorson - Torp · Tonawanda · ★ 3.3
items
[
  {
    "menuItemId": 281,
    "quantity": 2,
    "unitPrice": 34.47,
    "lineTotal": 68.94
  }
]
subtotal
68.94
deliveryFee
1.04
tip
9.85
total
79.83
currency
USD
status
delivered
placedAt
deliveredAt
userId
Adan Weber @adan.weber61
restaurantId
Douglas Group · New Cletastead · ★ 3.3
items
[
  {
    "menuItemId": 942,
    "quantity": 2,
    "unitPrice": 21.61,
    "lineTotal": 43.22
  },
  {
    "menuItemId": 940,
    "quantity": 3,
    "unitPrice": 58.2,
    "lineTotal": 174.6
  },
  {
    "menuItemId": 941,
    "quantity": 3,
    "unitPrice": 44.97,
    "lineTotal": 134.91
  },
  {
    "menuItemId": 939,
    "quantity": 1,
    "unitPrice": 58.88,
    "lineTotal": 58.88
  }
]
subtotal
411.61
deliveryFee
4.99
tip
3.84
total
420.44
currency
USD
status
out_for_delivery
placedAt
deliveredAt
userId
Loren Schmidt @loren_schmidt
restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
items
[
  {
    "menuItemId": 333,
    "quantity": 2,
    "unitPrice": 59.47,
    "lineTotal": 118.94
  },
  {
    "menuItemId": 332,
    "quantity": 2,
    "unitPrice": 49.4,
    "lineTotal": 98.8
  },
  {
    "menuItemId": 327,
    "quantity": 3,
    "unitPrice": 17.94,
    "lineTotal": 53.82
  }
]
subtotal
271.56
deliveryFee
4.42
tip
5.9
total
281.88
currency
USD
status
out_for_delivery
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": 49,
      "userId": 168,
      "restaurantId": 91,
      "items": [
        {
          "menuItemId": 1329,
          "quantity": 4,
          "unitPrice": 16.64,
          "lineTotal": 66.56
        },
        {
          "menuItemId": 1324,
          "quantity": 2,
          "unitPrice": 9.34,
          "lineTotal": 18.68
        }
      ],
      "subtotal": 85.24,
      "deliveryFee": 4.77,
      "tip": 3.81,
      "total": 93.82,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2024-10-01T13:57:58.497Z",
      "deliveredAt": "2024-10-01T16:38:33.331Z"
    },
    {
      "id": 50,
      "userId": 12,
      "restaurantId": 89,
      "items": [
        {
          "menuItemId": 1282,
          "quantity": 4,
          "unitPrice": 13.28,
          "lineTotal": 53.12
        },
        {
          "menuItemId": 1284,
          "quantity": 3,
          "unitPrice": 66.71,
          "lineTotal": 200.13
        },
        {
          "menuItemId": 1285,
          "quantity": 1,
          "unitPrice": 8.63,
          "lineTotal": 8.63
        },
        {
          "menuItemId": 1280,
          "quantity": 1,
          "unitPrice": 8.8,
          "lineTotal": 8.8
        }
      ],
      "subtotal": 270.68,
      "deliveryFee": 6.12,
      "tip": 9.35,
      "total": 286.15,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-04-26T07:18:30.467Z",
      "deliveredAt": "2025-04-26T10:34:49.625Z"
    },
    {
      "id": 51,
      "userId": 235,
      "restaurantId": 65,
      "items": [
        {
          "menuItemId": 974,
          "quantity": 2,
          "unitPrice": 76.81,
          "lineTotal": 153.62
        },
        {
          "menuItemId": 987,
          "quantity": 4,
          "unitPrice": 32.67,
          "lineTotal": 130.68
        },
        {
          "menuItemId": 978,
          "quantity": 1,
          "unitPrice": 15.99,
          "lineTotal": 15.99
        }
      ],
      "subtotal": 300.29,
      "deliveryFee": 7.6,
      "tip": 2.01,
      "total": 309.9,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-04-18T05:51:48.288Z",
      "deliveredAt": "2025-04-18T09:41:39.596Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=3",
    "next": "/api/v1/food-orders?page=4",
    "prev": "/api/v1/food-orders?page=2"
  }
}
Draftbit