Opening Times

Description: Shows business operating hours and scheduling information.

API Response Structure:

{
  "business": {
    "name": "Business Name",
    "type": "Restaurant
  },
  "hours": {
    "regular": [
      {
        "day": "Monday",
        "open": "9:00 AM",
        "close": "10:00 PM",
        "isOpen": true
      }
    ],
    "holidays": [
      {
        "date": "2023-12-25",
        "status": "Closed",
        "note": "Christmas Day"
      }
    ]
  },
  "currentStatus": {
    "isOpen": true,
    "nextChange": "Closes at 10:00 PM"
  },
  "type": "instantAnswers",
  "configType": "openingTimes"
}

Fields:

  • business (object): Business information

    • name (string): Business name

    • type (string): Business type

  • hours (object): Operating hours

    • regular (array): Regular schedule

    • holidays (array): Holiday schedule

  • currentStatus (object): Current operating status

    • isOpen (boolean): Currently open

    • nextChange (string): Next status change

  • type (string): Always "instantAnswers"

  • configType (string): Always "openingTimes"