example-data.com

food-orders

food-orders

Browse 500 food-orders records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Roberta Mueller-Yundt @roberta_mueller-yundt
restaurantId
Medhurst, Effertz and Brown · Franeckiburgh · ★ 3.2
items
[
  {
    "menuItemId": 1146,
    "quantity": 2,
    "unitPrice": 37.77,
    "lineTotal": 75.54
  },
  {
    "menuItemId": 1143,
    "quantity": 2,
    "unitPrice": 15.09,
    "lineTotal": 30.18
  }
]
subtotal
105.72
deliveryFee
5.19
tip
10.31
total
121.22
currency
USD
status
placed
placedAt
deliveredAt
userId
Clementine Nicolas @clementine_nicolas
restaurantId
Halvorson - Olson · Lake Angeloton · ★ 3.7
items
[
  {
    "menuItemId": 100,
    "quantity": 4,
    "unitPrice": 55.87,
    "lineTotal": 223.48
  },
  {
    "menuItemId": 105,
    "quantity": 4,
    "unitPrice": 22.74,
    "lineTotal": 90.96
  }
]
subtotal
314.44
deliveryFee
1.67
tip
6.13
total
322.24
currency
USD
status
cancelled
placedAt
deliveredAt
userId
Everett Yundt @everett_yundt11
restaurantId
Trantow - Jerde · Zaneberg · ★ 2.7
items
[
  {
    "menuItemId": 439,
    "quantity": 2,
    "unitPrice": 19.18,
    "lineTotal": 38.36
  },
  {
    "menuItemId": 435,
    "quantity": 1,
    "unitPrice": 75.39,
    "lineTotal": 75.39
  },
  {
    "menuItemId": 437,
    "quantity": 3,
    "unitPrice": 62.77,
    "lineTotal": 188.31
  },
  {
    "menuItemId": 433,
    "quantity": 1,
    "unitPrice": 41.8,
    "lineTotal": 41.8
  },
  {
    "menuItemId": 434,
    "quantity": 3,
    "unitPrice": 12.59,
    "lineTotal": 37.77
  }
]
subtotal
381.63
deliveryFee
3.42
tip
6
total
391.05
currency
USD
status
delivered
placedAt
deliveredAt
userId
Carley Gleichner @carley.gleichner
restaurantId
Huel, Stark and Zulauf · Zoiemouth · ★ 2.7
items
[
  {
    "menuItemId": 1003,
    "quantity": 2,
    "unitPrice": 28.8,
    "lineTotal": 57.6
  },
  {
    "menuItemId": 1006,
    "quantity": 4,
    "unitPrice": 51.33,
    "lineTotal": 205.32
  },
  {
    "menuItemId": 1005,
    "quantity": 2,
    "unitPrice": 9.96,
    "lineTotal": 19.92
  }
]
subtotal
282.84
deliveryFee
6.49
tip
9.79
total
299.12
currency
USD
status
delivered
placedAt
deliveredAt
userId
Autumn Bartell @autumn.bartell95
restaurantId
Durgan Group · Fort Collins · ★ 3.1
items
[
  {
    "menuItemId": 50,
    "quantity": 4,
    "unitPrice": 34.46,
    "lineTotal": 137.84
  },
  {
    "menuItemId": 48,
    "quantity": 2,
    "unitPrice": 57.67,
    "lineTotal": 115.34
  }
]
subtotal
253.18
deliveryFee
0.6
tip
10.2
total
263.98
currency
USD
status
delivered
placedAt
deliveredAt
userId
Carroll Wisozk @carroll_wisozk
restaurantId
Gerhold - Dietrich · North Joshua · ★ 4.9
items
[
  {
    "menuItemId": 951,
    "quantity": 2,
    "unitPrice": 62.14,
    "lineTotal": 124.28
  },
  {
    "menuItemId": 946,
    "quantity": 4,
    "unitPrice": 69.88,
    "lineTotal": 279.52
  },
  {
    "menuItemId": 962,
    "quantity": 4,
    "unitPrice": 60.65,
    "lineTotal": 242.6
  },
  {
    "menuItemId": 948,
    "quantity": 1,
    "unitPrice": 63.65,
    "lineTotal": 63.65
  }
]
subtotal
710.05
deliveryFee
0.85
tip
4.19
total
715.09
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": 1,
      "userId": 162,
      "restaurantId": 78,
      "items": [
        {
          "menuItemId": 1146,
          "quantity": 2,
          "unitPrice": 37.77,
          "lineTotal": 75.54
        },
        {
          "menuItemId": 1143,
          "quantity": 2,
          "unitPrice": 15.09,
          "lineTotal": 30.18
        }
      ],
      "subtotal": 105.72,
      "deliveryFee": 5.19,
      "tip": 10.31,
      "total": 121.22,
      "currency": "USD",
      "status": "placed",
      "placedAt": "2024-06-15T20:59:09.714Z",
      "deliveredAt": null
    },
    {
      "id": 2,
      "userId": 164,
      "restaurantId": 8,
      "items": [
        {
          "menuItemId": 100,
          "quantity": 4,
          "unitPrice": 55.87,
          "lineTotal": 223.48
        },
        {
          "menuItemId": 105,
          "quantity": 4,
          "unitPrice": 22.74,
          "lineTotal": 90.96
        }
      ],
      "subtotal": 314.44,
      "deliveryFee": 1.67,
      "tip": 6.13,
      "total": 322.24,
      "currency": "USD",
      "status": "cancelled",
      "placedAt": "2025-01-18T16:51:21.069Z",
      "deliveredAt": null
    },
    {
      "id": 3,
      "userId": 44,
      "restaurantId": 29,
      "items": [
        {
          "menuItemId": 439,
          "quantity": 2,
          "unitPrice": 19.18,
          "lineTotal": 38.36
        },
        {
          "menuItemId": 435,
          "quantity": 1,
          "unitPrice": 75.39,
          "lineTotal": 75.39
        },
        {
          "menuItemId": 437,
          "quantity": 3,
          "unitPrice": 62.77,
          "lineTotal": 188.31
        },
        {
          "menuItemId": 433,
          "quantity": 1,
          "unitPrice": 41.8,
          "lineTotal": 41.8
        },
        {
          "menuItemId": 434,
          "quantity": 3,
          "unitPrice": 12.59,
          "lineTotal": 37.77
        }
      ],
      "subtotal": 381.63,
      "deliveryFee": 3.42,
      "tip": 6,
      "total": 391.05,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2026-01-12T17:51:55.199Z",
      "deliveredAt": "2026-01-12T21:11:18.180Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 500,
    "totalPages": 20
  },
  "links": {
    "self": "/api/v1/food-orders?page=1",
    "first": "/api/v1/food-orders?page=1",
    "last": "/api/v1/food-orders?page=20",
    "next": "/api/v1/food-orders?page=2",
    "prev": null
  }
}

View full response →

Draftbit