A quick end-of-week blog post to mention that now that the museum has re-opened we have updated the cooperhewitt.galleries.openingHours and cooperhewitt.galleries.isOpen API methods to reflect… well, reality.
In addition to the cooperhewitt.galleries
API methods we’ve also published corresponding openingHours and isOpen methods for the cafe!
For example, cooperhewitt.galleries.isOpen.
curl 'https://api.collection.cooperhewitt.org/rest/?method=cooperhewitt.galleries.isOpen&access_token=***' { "open": 0, "holiday": 0, "hours": { "open": "10:00", "close": "18:00" }, "time": "18:01", "timezone": "America/New_York", "stat": "ok" }
Or, cooperhewitt.cafe.openingHours.
curl -X GET 'https://api.collection.cooperhewitt.org/rest/?method=cooperhewitt.cafe.openingHours&access_token=***' { "hours": { "Sunday": { "open": "07:30", "close": "18:00" }, "Monday": { "open": "07:30", "close": "18:00" }, "Tuesday": { "open": "07:30", "close": "18:00" }, "Wednesday": { "open": "07:30", "close": "18:00" }, "Thursday": { "open": "07:30", "close": "18:00" }, "Friday": { "open": "07:30", "close": "18:00" }, "Saturday": { "open": "07:30", "close": "21:00" } }, "timezone": "America/New_York", "stat": "ok" }
Because coffee, right?