Six Flags
Reads a Six Flags/Cedar Fair park's own daily-tickets page — every park in the merged portfolio (Six Flags Magic Mountain, Cedar Point, Kings Island,…
Reads a Six Flags/Cedar Fair park's own daily-tickets page — every park in the merged portfolio (Six Flags Magic Mountain, Cedar Point, Kings Island, Knott's Berry Farm, Carowinds and ~30 more) runs on one shared site — and returns its current ticket/pass cards straight out of the page's own server-rendered data, no browser.
Domain: sixflags.com
Also known as: Six Flags, sixflags.com, Cedar Point, Cedar Fair, Kings Island, Knott's Berry Farm, Six Flags Magic Mountain, Six Flags Great Adventure
Prefer the capability
bowmark.theme_park_tickets covers this provider and routes around it when it is having a bad day. Reach for this page when you need sixflags.com specifically.
Call it directly
bowmark.providers.sixflags.getTickets(park: string): Promise<SixFlagsTicketsResult>Functions
| Function | What it does |
|---|---|
getTickets | Reads a Six Flags/Cedar Fair park's own daily-tickets page by its sixflags.com URL slug (e.g. "cedarpoint", "greatadventure", "magicmountain", "knotts") and returns its ticket/pass… |
Types
interface SixFlagsPassRow {
id: string | null;
guestFacingTitle: string; // e.g. "Park Ticket", "2027 Gold Pass"
subtitle: string | null;
beforePriceText: string | null; // e.g. "Starting From", "Only"
currentPrice: string; // the site's raw text, e.g. "$$55"
currentPriceModifier: string | null; // e.g. "/ea*", "per night"
strikethroughPrice: string | null; // the struck-through "was" price
buyUrl: string | null;
}
interface SixFlagsTicketsResult {
parkSlug: string;
parkTitle: string;
groupLabel: string; // e.g. "Daily Tickets"
passes: SixFlagsPassRow[];
}Examples
// today's daily-ticket cards at Cedar Point
const { parkTitle, passes } = await bowmark.providers.sixflags.getTickets("cedarpoint");
for (const p of passes) log(`${p.guestFacingTitle}: ${p.currentPrice}${p.currentPriceModifier ?? ""}`);
return { parkTitle, passes };Related
theme_park_tickets | Theme park tickets — the capability this provider backs. |