example-data.com

food-orders

food-orders

Page 5 of 10.

userId
Clyde Bernier-Gleason @clyde_bernier-gleason6
restaurantId
Grimes, Durgan and Grady · Fort Estelfield · ★ 4.0
items
[
  {
    "menuItemId": 1117,
    "quantity": 3,
    "unitPrice": 52.65,
    "lineTotal": 157.95
  },
  {
    "menuItemId": 1124,
    "quantity": 2,
    "unitPrice": 29.23,
    "lineTotal": 58.46
  },
  {
    "menuItemId": 1125,
    "quantity": 2,
    "unitPrice": 77.03,
    "lineTotal": 154.06
  },
  {
    "menuItemId": 1116,
    "quantity": 3,
    "unitPrice": 51.83,
    "lineTotal": 155.49
  },
  {
    "menuItemId": 1119,
    "quantity": 2,
    "unitPrice": 70.08,
    "lineTotal": 140.16
  }
]
subtotal
666.12
deliveryFee
2.08
tip
3.96
total
672.16
currency
USD
status
out_for_delivery
placedAt
deliveredAt
userId
Queen Lubowitz @queen.lubowitz76
restaurantId
Aufderhar - Johns · East Lorenside · ★ 4.5
items
[
  {
    "menuItemId": 1424,
    "quantity": 4,
    "unitPrice": 65.44,
    "lineTotal": 261.76
  }
]
subtotal
261.76
deliveryFee
3.59
tip
7.52
total
272.87
currency
USD
status
delivered
placedAt
deliveredAt
userId
Marta Harvey @marta.harvey68
restaurantId
Grimes, Durgan and Grady · Fort Estelfield · ★ 4.0
items
[
  {
    "menuItemId": 1125,
    "quantity": 1,
    "unitPrice": 77.03,
    "lineTotal": 77.03
  }
]
subtotal
77.03
deliveryFee
7.85
tip
5.58
total
90.46
currency
USD
status
delivered
placedAt
deliveredAt
userId
Cindy Barrows @cindy_barrows20
restaurantId
Johns - Adams · Bradleyburgh · ★ 2.6
items
[
  {
    "menuItemId": 874,
    "quantity": 3,
    "unitPrice": 19.84,
    "lineTotal": 59.52
  },
  {
    "menuItemId": 881,
    "quantity": 4,
    "unitPrice": 50.74,
    "lineTotal": 202.96
  },
  {
    "menuItemId": 878,
    "quantity": 3,
    "unitPrice": 54.07,
    "lineTotal": 162.21
  }
]
subtotal
424.69
deliveryFee
7.38
tip
6.82
total
438.89
currency
USD
status
delivered
placedAt
deliveredAt
userId
Rosina Larkin @rosina.larkin75
restaurantId
Mohr, Treutel and Watsica · East Felipa · ★ 4.6
items
[
  {
    "menuItemId": 404,
    "quantity": 4,
    "unitPrice": 60.68,
    "lineTotal": 242.72
  },
  {
    "menuItemId": 412,
    "quantity": 4,
    "unitPrice": 75.01,
    "lineTotal": 300.04
  },
  {
    "menuItemId": 402,
    "quantity": 1,
    "unitPrice": 42.4,
    "lineTotal": 42.4
  }
]
subtotal
585.16
deliveryFee
7.43
tip
0.69
total
593.28
currency
USD
status
placed
placedAt
deliveredAt
userId
Orrin Grant @orrin.grant42
restaurantId
Heathcote Group · New Eduardoboro · ★ 4.0
items
[
  {
    "menuItemId": 1192,
    "quantity": 2,
    "unitPrice": 56.59,
    "lineTotal": 113.18
  },
  {
    "menuItemId": 1181,
    "quantity": 4,
    "unitPrice": 52.58,
    "lineTotal": 210.32
  },
  {
    "menuItemId": 1173,
    "quantity": 1,
    "unitPrice": 38.19,
    "lineTotal": 38.19
  }
]
subtotal
361.69
deliveryFee
0.89
tip
11.54
total
374.12
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": 97,
      "userId": 143,
      "restaurantId": 76,
      "items": [
        {
          "menuItemId": 1117,
          "quantity": 3,
          "unitPrice": 52.65,
          "lineTotal": 157.95
        },
        {
          "menuItemId": 1124,
          "quantity": 2,
          "unitPrice": 29.23,
          "lineTotal": 58.46
        },
        {
          "menuItemId": 1125,
          "quantity": 2,
          "unitPrice": 77.03,
          "lineTotal": 154.06
        },
        {
          "menuItemId": 1116,
          "quantity": 3,
          "unitPrice": 51.83,
          "lineTotal": 155.49
        },
        {
          "menuItemId": 1119,
          "quantity": 2,
          "unitPrice": 70.08,
          "lineTotal": 140.16
        }
      ],
      "subtotal": 666.12,
      "deliveryFee": 2.08,
      "tip": 3.96,
      "total": 672.16,
      "currency": "USD",
      "status": "out_for_delivery",
      "placedAt": "2025-07-02T15:14:38.613Z",
      "deliveredAt": null
    },
    {
      "id": 98,
      "userId": 28,
      "restaurantId": 98,
      "items": [
        {
          "menuItemId": 1424,
          "quantity": 4,
          "unitPrice": 65.44,
          "lineTotal": 261.76
        }
      ],
      "subtotal": 261.76,
      "deliveryFee": 3.59,
      "tip": 7.52,
      "total": 272.87,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2026-01-15T03:25:34.478Z",
      "deliveredAt": "2026-01-15T06:24:00.485Z"
    },
    {
      "id": 99,
      "userId": 112,
      "restaurantId": 76,
      "items": [
        {
          "menuItemId": 1125,
          "quantity": 1,
          "unitPrice": 77.03,
          "lineTotal": 77.03
        }
      ],
      "subtotal": 77.03,
      "deliveryFee": 7.85,
      "tip": 5.58,
      "total": 90.46,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-10-10T04:37:55.642Z",
      "deliveredAt": "2025-10-10T08:13:06.017Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=5",
    "next": "/api/v1/food-orders?page=6",
    "prev": "/api/v1/food-orders?page=4"
  }
}
Draftbit