grubhub · Example Payload

Grubhub Order Example

Grubhub Order Example is an example object payload from grubhub, with 14 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

order_uuidmerchant_idexternal_order_idstatusfulfillment_typeplaced_atconfirmed_atestimated_delivery_atcustomeritemstotalsdelivery_addressspecial_instructionswait_time_in_minutes

Example Payload

Raw ↑
{
  "order_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "merchant_id": "ghm-1234567890",
  "external_order_id": "id-1234567890",
  "status": "PENDING",
  "fulfillment_type": "PICKUP",
  "placed_at": "2026-06-02T18:30:00Z",
  "confirmed_at": "2026-06-02T18:30:00Z",
  "estimated_delivery_at": "2026-06-02T18:30:00Z",
  "customer": {
    "first_name": "Jordan",
    "last_name": "Rivera",
    "phone": "+13125550142"
  },
  "items": [
    {
      "item_id": "id-1234567890",
      "name": "Margherita Pizza",
      "quantity": 3,
      "price": 45.2,
      "size": "sample-value",
      "modifiers": [
        {
          "name": "Margherita Pizza",
          "price": 24.54
        }
      ],
      "special_instructions": "Leave at the front desk."
    }
  ],
  "totals": {
    "subtotal": 49.26,
    "tax": 47.05,
    "delivery_fee": 21.34,
    "tip": 42.55,
    "total": 29.09
  },
  "delivery_address": {
    "street_address": "111 W Washington St",
    "apt_suite": "sample-value",
    "city": "Chicago",
    "state": "IL",
    "zip": "60602",
    "latitude": 41.8781,
    "longitude": -87.6298
  },
  "special_instructions": "Leave at the front desk.",
  "wait_time_in_minutes": 15
}