muze.gov.tr — Turkey Ministry of Culture and Tourism museums portal
Turkey's Ministry of Culture and Tourism museums portal — opening/closing hours, ticket-office closing time and closed days for the museums and…
Turkey's Ministry of Culture and Tourism museums portal — opening/closing hours, ticket-office closing time and closed days for the museums and archaeological sites it publishes (İstanbul Archaeological Museums, Hagia Sophia History and Experience Museum, Galata Tower Museum among them), read straight off the site's own listing and detail pages.
Domain: muze.gov.tr
Also known as: muze.gov.tr, Müze.gov.tr, Turkey museums, Turkish state museums
Prefer the capability
bowmark.istanbul_schedules covers this provider and routes around it when it is having a bad day. Reach for this page when you need muze.gov.tr specifically.
Call it directly
bowmark.providers.muze_gov_tr.getVisitingHours(query: string): Promise<MuzeVisitingHours>Functions
| Function | What it does |
|---|---|
getVisitingHours | Matches query against muze.gov.tr's own museum-highlight listing (a substring match on the site's own display name, e.g. "Galata Tower" or "Hagia Sophia") and reads that museum's… |
Types
interface MuzeVisitingHours {
name: string;
openingTime: string | null; // "HH:MM"
closingTime: string | null; // "HH:MM"
ticketOfficeClosingTime: string | null; // "HH:MM" — often earlier than closingTime
closedDays: string | null; // the site's own Turkish wording, e.g. "Her gün açık"
address: string | null;
phone: string | null;
email: string | null;
url: string;
}Examples
// When does Galata Tower Museum close today, and its ticket office?
const hours = await bowmark.providers.muze_gov_tr.getVisitingHours("Galata Tower");
return { closes: hours.closingTime, ticketOfficeCloses: hours.ticketOfficeClosingTime };Related
istanbul_schedules | Istanbul attraction opening hours — the capability this provider backs. |