Fumadocs

Operations

Operational information about the museum.

Demo Only
GET
/museum-hours

Get museum hours

Get upcoming museum operating hours

Authorization

Authorization
Required
Basic <token>

In: header

Query Parameters

startDatestring

The starting date to retrieve future operating hours from. Defaults to today's date.

Example: "2023-02-23"Format: "date"

pageinteger

The page number to retrieve.

Example: 2Default: 1

limitinteger

The number of days per page.

Example: 15Default: 10Maximum: 30
Status codeDescription
200Success
400Bad request
404Not found
/museum-hours

curl -X GET "https://redocly.com/_mock/docs/openapi/museum-api/museum-hours?startDate=2023-02-23&page=2&limit=15"

List of museum operating hours for consecutive days.

[
  {
    "date": "02-02-2022",
    "timeOpen": "09:00",
    "timeClose": "18:00"
  }
]

Last updated on