example-data.com

food-orders

food-orders

Page 9 of 10.

userId
Tillman Breitenberg @tillman_breitenberg54
restaurantId
Bartoletti LLC · Shannychester · ★ 3.3
items
[
  {
    "menuItemId": 752,
    "quantity": 3,
    "unitPrice": 34.93,
    "lineTotal": 104.79
  },
  {
    "menuItemId": 743,
    "quantity": 4,
    "unitPrice": 5.59,
    "lineTotal": 22.36
  }
]
subtotal
127.15
deliveryFee
0.27
tip
8.36
total
135.78
currency
USD
status
cancelled
placedAt
deliveredAt
userId
Jamil Mayer @jamil.mayer
restaurantId
Marks Inc · East Dena · ★ 4.1
items
[
  {
    "menuItemId": 813,
    "quantity": 3,
    "unitPrice": 70.63,
    "lineTotal": 211.89
  },
  {
    "menuItemId": 812,
    "quantity": 1,
    "unitPrice": 71.08,
    "lineTotal": 71.08
  },
  {
    "menuItemId": 806,
    "quantity": 4,
    "unitPrice": 46.54,
    "lineTotal": 186.16
  }
]
subtotal
469.13
deliveryFee
6.4
tip
1.11
total
476.64
currency
USD
status
delivered
placedAt
deliveredAt
userId
Wallace Batz @wallace_batz
restaurantId
Klocko, Gusikowski and Lockman · Lake Vern · ★ 2.9
items
[
  {
    "menuItemId": 1345,
    "quantity": 3,
    "unitPrice": 71.58,
    "lineTotal": 214.74
  },
  {
    "menuItemId": 1335,
    "quantity": 3,
    "unitPrice": 59.2,
    "lineTotal": 177.6
  },
  {
    "menuItemId": 1331,
    "quantity": 3,
    "unitPrice": 31.3,
    "lineTotal": 93.9
  },
  {
    "menuItemId": 1342,
    "quantity": 1,
    "unitPrice": 22.14,
    "lineTotal": 22.14
  },
  {
    "menuItemId": 1339,
    "quantity": 4,
    "unitPrice": 5.4,
    "lineTotal": 21.6
  }
]
subtotal
529.98
deliveryFee
4.14
tip
3.87
total
537.99
currency
USD
status
delivered
placedAt
deliveredAt
userId
Minerva Hettinger @minerva_hettinger
restaurantId
Mitchell, O'Kon and Kunde · South Janelle · ★ 3.2
items
[
  {
    "menuItemId": 340,
    "quantity": 4,
    "unitPrice": 68,
    "lineTotal": 272
  },
  {
    "menuItemId": 343,
    "quantity": 3,
    "unitPrice": 37.15,
    "lineTotal": 111.45
  }
]
subtotal
383.45
deliveryFee
7.23
tip
9.95
total
400.63
currency
USD
status
delivered
placedAt
deliveredAt
userId
Hortense Cruickshank @hortense.cruickshank65
restaurantId
Walsh LLC · Predovicville · ★ 4.8
items
[
  {
    "menuItemId": 1444,
    "quantity": 1,
    "unitPrice": 60.6,
    "lineTotal": 60.6
  },
  {
    "menuItemId": 1448,
    "quantity": 3,
    "unitPrice": 50.38,
    "lineTotal": 151.14
  },
  {
    "menuItemId": 1450,
    "quantity": 1,
    "unitPrice": 40.3,
    "lineTotal": 40.3
  }
]
subtotal
252.04
deliveryFee
6.19
tip
2.78
total
261.01
currency
USD
status
delivered
placedAt
deliveredAt
userId
Vidal Parker @vidal_parker12
restaurantId
Brown - Johnson · West Bernie · ★ 3.3
items
[
  {
    "menuItemId": 625,
    "quantity": 2,
    "unitPrice": 6.11,
    "lineTotal": 12.22
  },
  {
    "menuItemId": 636,
    "quantity": 4,
    "unitPrice": 59.18,
    "lineTotal": 236.72
  },
  {
    "menuItemId": 621,
    "quantity": 2,
    "unitPrice": 45.28,
    "lineTotal": 90.56
  },
  {
    "menuItemId": 627,
    "quantity": 4,
    "unitPrice": 5.52,
    "lineTotal": 22.08
  }
]
subtotal
361.58
deliveryFee
4.28
tip
5.92
total
371.78
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": 193,
      "userId": 145,
      "restaurantId": 49,
      "items": [
        {
          "menuItemId": 752,
          "quantity": 3,
          "unitPrice": 34.93,
          "lineTotal": 104.79
        },
        {
          "menuItemId": 743,
          "quantity": 4,
          "unitPrice": 5.59,
          "lineTotal": 22.36
        }
      ],
      "subtotal": 127.15,
      "deliveryFee": 0.27,
      "tip": 8.36,
      "total": 135.78,
      "currency": "USD",
      "status": "cancelled",
      "placedAt": "2025-02-26T03:51:15.964Z",
      "deliveredAt": null
    },
    {
      "id": 194,
      "userId": 233,
      "restaurantId": 54,
      "items": [
        {
          "menuItemId": 813,
          "quantity": 3,
          "unitPrice": 70.63,
          "lineTotal": 211.89
        },
        {
          "menuItemId": 812,
          "quantity": 1,
          "unitPrice": 71.08,
          "lineTotal": 71.08
        },
        {
          "menuItemId": 806,
          "quantity": 4,
          "unitPrice": 46.54,
          "lineTotal": 186.16
        }
      ],
      "subtotal": 469.13,
      "deliveryFee": 6.4,
      "tip": 1.11,
      "total": 476.64,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2024-06-29T15:58:32.429Z",
      "deliveredAt": "2024-06-29T18:43:19.983Z"
    },
    {
      "id": 195,
      "userId": 229,
      "restaurantId": 92,
      "items": [
        {
          "menuItemId": 1345,
          "quantity": 3,
          "unitPrice": 71.58,
          "lineTotal": 214.74
        },
        {
          "menuItemId": 1335,
          "quantity": 3,
          "unitPrice": 59.2,
          "lineTotal": 177.6
        },
        {
          "menuItemId": 1331,
          "quantity": 3,
          "unitPrice": 31.3,
          "lineTotal": 93.9
        },
        {
          "menuItemId": 1342,
          "quantity": 1,
          "unitPrice": 22.14,
          "lineTotal": 22.14
        },
        {
          "menuItemId": 1339,
          "quantity": 4,
          "unitPrice": 5.4,
          "lineTotal": 21.6
        }
      ],
      "subtotal": 529.98,
      "deliveryFee": 4.14,
      "tip": 3.87,
      "total": 537.99,
      "currency": "USD",
      "status": "delivered",
      "placedAt": "2025-07-23T13:35:06.300Z",
      "deliveredAt": "2025-07-23T17:00:48.389Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/food-orders?page=9",
    "next": "/api/v1/food-orders?page=10",
    "prev": "/api/v1/food-orders?page=8"
  }
}
Draftbit