example-data.com

food-orders

food-orders

Page 6 of 10.

userId
Cassidy Boehm @cassidy_boehm22
restaurantId
Weimann, Herzog and Wisoky · Grahamberg · ★ 3.2
items
[
  {
    "menuItemId": 1282,
    "quantity": 4,
    "unitPrice": 13.28,
    "lineTotal": 53.12
  },
  {
    "menuItemId": 1284,
    "quantity": 2,
    "unitPrice": 66.71,
    "lineTotal": 133.42
  }
]
subtotal
186.54
deliveryFee
0.03
tip
4.93
total
191.5
currency
USD
status
delivered
placedAt
deliveredAt
userId
Marcelina Grady @marcelina_grady19
restaurantId
Schoen, Cole and Bauch · Thompsonberg · ★ 3.1
items
[
  {
    "menuItemId": 466,
    "quantity": 2,
    "unitPrice": 18.03,
    "lineTotal": 36.06
  }
]
subtotal
36.06
deliveryFee
4.38
tip
7.86
total
48.3
currency
USD
status
placed
placedAt
deliveredAt
userId
Darian Schaden @darian_schaden36
restaurantId
Walker - Botsford · Zulaufburgh · ★ 3.7
items
[
  {
    "menuItemId": 480,
    "quantity": 3,
    "unitPrice": 66.92,
    "lineTotal": 200.76
  },
  {
    "menuItemId": 477,
    "quantity": 2,
    "unitPrice": 68.24,
    "lineTotal": 136.48
  },
  {
    "menuItemId": 481,
    "quantity": 3,
    "unitPrice": 32.94,
    "lineTotal": 98.82
  }
]
subtotal
436.06
deliveryFee
5.6
tip
3.43
total
445.09
currency
USD
status
delivered
placedAt
deliveredAt
userId
Adrain Kris-Hermiston @adrain.kris-hermiston
restaurantId
Bergstrom LLC · South Gate · ★ 3.0
items
[
  {
    "menuItemId": 993,
    "quantity": 1,
    "unitPrice": 27.62,
    "lineTotal": 27.62
  },
  {
    "menuItemId": 998,
    "quantity": 3,
    "unitPrice": 25.06,
    "lineTotal": 75.18
  },
  {
    "menuItemId": 992,
    "quantity": 2,
    "unitPrice": 79.66,
    "lineTotal": 159.32
  },
  {
    "menuItemId": 997,
    "quantity": 2,
    "unitPrice": 3.24,
    "lineTotal": 6.48
  },
  {
    "menuItemId": 1002,
    "quantity": 2,
    "unitPrice": 9.03,
    "lineTotal": 18.06
  }
]
subtotal
286.66
deliveryFee
5.68
tip
5.97
total
298.31
currency
USD
status
placed
placedAt
deliveredAt
userId
Elvis Littel-Vandervort @elvis.littel-vandervort28
restaurantId
Bergstrom LLC · South Gate · ★ 3.0
items
[
  {
    "menuItemId": 1001,
    "quantity": 2,
    "unitPrice": 79.86,
    "lineTotal": 159.72
  },
  {
    "menuItemId": 993,
    "quantity": 4,
    "unitPrice": 27.62,
    "lineTotal": 110.48
  },
  {
    "menuItemId": 1000,
    "quantity": 1,
    "unitPrice": 74.17,
    "lineTotal": 74.17
  }
]
subtotal
344.37
deliveryFee
3.33
tip
2.29
total
349.99
currency
USD
status
delivered
placedAt
deliveredAt
userId
Jennifer Hoeger @jennifer.hoeger
restaurantId
Braun and Sons · Deckowland · ★ 3.6
items
[
  {
    "menuItemId": 609,
    "quantity": 3,
    "unitPrice": 63.63,
    "lineTotal": 190.89
  },
  {
    "menuItemId": 606,
    "quantity": 1,
    "unitPrice": 73.22,
    "lineTotal": 73.22
  },
  {
    "menuItemId": 614,
    "quantity": 3,
    "unitPrice": 27.39,
    "lineTotal": 82.17
  }
]
subtotal
346.28
deliveryFee
3.73
tip
11.34
total
361.35
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": 121,
      "userId": 204,
      "restaurantId": 89,
      "items": [
        {
          "menuItemId": 1282,
          "quantity": 4,
          "unitPrice": 13.28,
          "lineTotal": 53.12
        },
        {
          "menuItemId": 1284,
          "quantity": 2,
          "unitPrice": 66.71,
          "lineTotal": 133.42
        }
      ],
      "subtotal": 186.54,
      "deliveryFee": 0.03,
      "tip": 4.93,
      "total": 191.5,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-01-29T13:50:55.517Z",
      "deliveredAt": "2025-01-29T17:42:02.486Z"
    },
    {
      "id": 122,
      "userId": 241,
      "restaurantId": 31,
      "items": [
        {
          "menuItemId": 466,
          "quantity": 2,
          "unitPrice": 18.03,
          "lineTotal": 36.06
        }
      ],
      "subtotal": 36.06,
      "deliveryFee": 4.38,
      "tip": 7.86,
      "total": 48.3,
      "currency": "USD",
      "status": "placed",
      "placedAt": "2026-02-14T12:39:07.427Z",
      "deliveredAt": null
    },
    {
      "id": 123,
      "userId": 53,
      "restaurantId": 32,
      "items": [
        {
          "menuItemId": 480,
          "quantity": 3,
          "unitPrice": 66.92,
          "lineTotal": 200.76
        },
        {
          "menuItemId": 477,
          "quantity": 2,
          "unitPrice": 68.24,
          "lineTotal": 136.48
        },
        {
          "menuItemId": 481,
          "quantity": 3,
          "unitPrice": 32.94,
          "lineTotal": 98.82
        }
      ],
      "subtotal": 436.06,
      "deliveryFee": 5.6,
      "tip": 3.43,
      "total": 445.09,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-02-03T22:55:49.182Z",
      "deliveredAt": "2025-02-04T02:14:28.995Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=6",
    "next": "/api/v1/food-orders?page=7",
    "prev": "/api/v1/food-orders?page=5"
  }
}
Draftbit