example-data.com

food-orders

food-orders

Page 2 of 10.

userId
Maximus Bosco @maximus_bosco
restaurantId
Roob - Fisher · Kuhlmanshire · ★ 3.2
items
[
  {
    "menuItemId": 1230,
    "quantity": 1,
    "unitPrice": 3.98,
    "lineTotal": 3.98
  },
  {
    "menuItemId": 1219,
    "quantity": 3,
    "unitPrice": 53.57,
    "lineTotal": 160.71
  },
  {
    "menuItemId": 1227,
    "quantity": 2,
    "unitPrice": 59.83,
    "lineTotal": 119.66
  },
  {
    "menuItemId": 1223,
    "quantity": 3,
    "unitPrice": 49.7,
    "lineTotal": 149.1
  },
  {
    "menuItemId": 1228,
    "quantity": 2,
    "unitPrice": 9.71,
    "lineTotal": 19.42
  }
]
subtotal
452.87
deliveryFee
2.67
tip
0.38
total
455.92
currency
USD
status
preparing
placedAt
deliveredAt
userId
Carley Gleichner @carley.gleichner
restaurantId
Rogahn - Kreiger · South Cathrynside · ★ 4.6
items
[
  {
    "menuItemId": 1212,
    "quantity": 3,
    "unitPrice": 21.02,
    "lineTotal": 63.06
  }
]
subtotal
63.06
deliveryFee
5.16
tip
7.58
total
75.8
currency
USD
status
delivered
placedAt
deliveredAt
userId
Hilda Crooks @hilda_crooks61
restaurantId
Murazik - Goodwin · Haneborough · ★ 3.2
items
[
  {
    "menuItemId": 840,
    "quantity": 3,
    "unitPrice": 8.79,
    "lineTotal": 26.37
  }
]
subtotal
26.37
deliveryFee
4.18
tip
2.34
total
32.89
currency
USD
status
preparing
placedAt
deliveredAt
userId
Marilou Douglas @marilou.douglas
restaurantId
Gislason Group · Marinafield · ★ 3.2
items
[
  {
    "menuItemId": 1066,
    "quantity": 1,
    "unitPrice": 43.38,
    "lineTotal": 43.38
  },
  {
    "menuItemId": 1069,
    "quantity": 3,
    "unitPrice": 40.45,
    "lineTotal": 121.35
  },
  {
    "menuItemId": 1059,
    "quantity": 3,
    "unitPrice": 61.29,
    "lineTotal": 183.87
  },
  {
    "menuItemId": 1077,
    "quantity": 1,
    "unitPrice": 18.38,
    "lineTotal": 18.38
  }
]
subtotal
366.98
deliveryFee
7.5
tip
0.07
total
374.55
currency
USD
status
delivered
placedAt
deliveredAt
userId
Jadon Nicolas @jadon.nicolas
restaurantId
Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
items
[
  {
    "menuItemId": 557,
    "quantity": 4,
    "unitPrice": 38.71,
    "lineTotal": 154.84
  }
]
subtotal
154.84
deliveryFee
4.92
tip
4.27
total
164.03
currency
USD
status
out_for_delivery
placedAt
deliveredAt
userId
Alanna Kilback @alanna_kilback31
restaurantId
Ferry LLC · South Gilbertoton · ★ 3.8
items
[
  {
    "menuItemId": 861,
    "quantity": 2,
    "unitPrice": 21.21,
    "lineTotal": 42.42
  },
  {
    "menuItemId": 854,
    "quantity": 2,
    "unitPrice": 31.03,
    "lineTotal": 62.06
  },
  {
    "menuItemId": 858,
    "quantity": 4,
    "unitPrice": 24.75,
    "lineTotal": 99
  },
  {
    "menuItemId": 859,
    "quantity": 1,
    "unitPrice": 72.86,
    "lineTotal": 72.86
  }
]
subtotal
276.34
deliveryFee
6.84
tip
7.67
total
290.85
currency
USD
status
cancelled
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": 25,
      "userId": 128,
      "restaurantId": 83,
      "items": [
        {
          "menuItemId": 1230,
          "quantity": 1,
          "unitPrice": 3.98,
          "lineTotal": 3.98
        },
        {
          "menuItemId": 1219,
          "quantity": 3,
          "unitPrice": 53.57,
          "lineTotal": 160.71
        },
        {
          "menuItemId": 1227,
          "quantity": 2,
          "unitPrice": 59.83,
          "lineTotal": 119.66
        },
        {
          "menuItemId": 1223,
          "quantity": 3,
          "unitPrice": 49.7,
          "lineTotal": 149.1
        },
        {
          "menuItemId": 1228,
          "quantity": 2,
          "unitPrice": 9.71,
          "lineTotal": 19.42
        }
      ],
      "subtotal": 452.87,
      "deliveryFee": 2.67,
      "tip": 0.38,
      "total": 455.92,
      "currency": "USD",
      "status": "preparing",
      "placedAt": "2024-07-24T01:26:28.211Z",
      "deliveredAt": null
    },
    {
      "id": 26,
      "userId": 142,
      "restaurantId": 82,
      "items": [
        {
          "menuItemId": 1212,
          "quantity": 3,
          "unitPrice": 21.02,
          "lineTotal": 63.06
        }
      ],
      "subtotal": 63.06,
      "deliveryFee": 5.16,
      "tip": 7.58,
      "total": 75.8,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-05-13T08:13:41.287Z",
      "deliveredAt": "2025-05-13T11:54:51.051Z"
    },
    {
      "id": 27,
      "userId": 187,
      "restaurantId": 56,
      "items": [
        {
          "menuItemId": 840,
          "quantity": 3,
          "unitPrice": 8.79,
          "lineTotal": 26.37
        }
      ],
      "subtotal": 26.37,
      "deliveryFee": 4.18,
      "tip": 2.34,
      "total": 32.89,
      "currency": "USD",
      "status": "preparing",
      "placedAt": "2025-07-25T07:52:29.503Z",
      "deliveredAt": null
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=2",
    "next": "/api/v1/food-orders?page=3",
    "prev": "/api/v1/food-orders?page=1"
  }
}
Draftbit