Mews · Example Payload

Mews Booking Engine Availability Example

HospitalityHotelPMSProperty ManagementTravelBookingReservationsCloudSaaS

Mews Booking Engine Availability Example is an example object payload from Mews, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.mews.com/api/bookingEngine/v1/services/getAvailability",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "ConfigurationId": "8a82f1ba-7e0e-4a1d-b54e-5bd86d52cf68",
      "ServiceId": "b27f6321-0a51-4ce8-bf80-3ea18b9e7c7e",
      "StartUtc": "2026-06-10T00:00:00Z",
      "EndUtc": "2026-06-13T00:00:00Z",
      "AdultCount": 2,
      "ChildCount": 0,
      "VoucherCode": null,
      "CurrencyCode": "EUR"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "CategoryAvailabilities": [
        {
          "CategoryId": "39c9a6d8-bf25-4ba6-9e5d-fc4ce842d8d6",
          "Availabilities": [3, 3, 3],
          "Adjustments": []
        }
      ],
      "RatePrices": [
        {
          "RateId": "7d6cd5a8-2c62-4cc5-9b46-7a9a08e88d5f",
          "CategoryPrices": [
            {
              "CategoryId": "39c9a6d8-bf25-4ba6-9e5d-fc4ce842d8d6",
              "TotalAmount": {"Currency": "EUR", "Value": 489.00},
              "AveragePerNight": {"Currency": "EUR", "Value": 163.00}
            }
          ]
        }
      ]
    }
  }
}