comedymothership.com APIcomedymothership.com ↗
Access upcoming Comedy Mothership shows, Kill Tony events, ticket tiers, booth seating availability, venue info, and FAQs via a structured JSON API.
curl -X GET 'https://api.parse.bot/scraper/4dd38a53-d19c-4782-96c8-121e2e94ef0f/get_upcoming_shows?page=1&limit=10' \ -H 'X-API-Key: $PARSE_API_KEY'
List upcoming comedy shows at Comedy Mothership. Returns show name, room, date/time, sold out status, and ticket URL. Results are paginated from the site's show listing page.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| limit | integer | Maximum number of shows to return from the current page. |
{
"type": "object",
"fields": {
"shows": "array of show objects with id, name, room, start_at, sold_out, and url",
"total_on_page": "integer total number of shows available on the page before limit is applied"
},
"sample": {
"data": {
"shows": [
{
"id": 128014,
"url": "https://squadup.com/events/rich-vos-9",
"name": "Rich Vos",
"room": "FAT MAN",
"sold_out": false,
"start_at": "2026-05-03T17:00:00-05:00"
},
{
"id": 131347,
"url": "https://squadup.com/events/comedy-mothership-showcase-731",
"name": "Comedy Mothership Showcase",
"room": "LITTLE BOY",
"sold_out": true,
"start_at": "2026-05-03T17:30:00-05:00"
}
],
"total_on_page": 64
},
"status": "success"
}
}About the comedymothership.com API
The Comedy Mothership API exposes 6 endpoints covering upcoming shows, room-specific schedules, Kill Tony event details, per-tier ticket availability, venue policy, and FAQ content. The get_kill_tony_events endpoint returns booth and table price tiers with remaining quantities, making it practical for monitoring availability on high-demand shows without manually checking the site.
Show Listings and Room Filtering
The get_upcoming_shows endpoint returns a paginated list of shows with fields including id, name, room, start_at, sold_out, and url. The page and limit parameters control pagination, and total_on_page tells you how many results existed before the limit was applied. To filter by venue room, get_shows_by_room accepts a room parameter with values fat-man or little-boy, returning only shows scheduled in that space.
Ticket Tiers and Kill Tony Details
get_kill_tony_events returns upcoming Kill Tony shows with a details object per event containing price_tiers, location, address, and url. Each price tier includes name, price, fee, remaining_quantity, sold_out, min_quantity, and max_quantity — enough to build a availability tracker or alert system. For any individual show, get_show_ticket_details accepts a show_id (the numeric id field from listing endpoints) and returns the same tier structure plus venue address and ticket purchase URL.
Venue Info and FAQ
get_venue_info returns the venue street address, an entry policy string, and an info array of text segments from the box office page. get_faq returns a faq_segments array of text blocks pulled from the Comedy Mothership FAQ page. Both endpoints take no parameters and are useful for populating static reference content in apps or bots.
- Alert when Kill Tony tickets drop below a threshold using
remaining_quantityfromget_kill_tony_events - Track sold-out status changes across all upcoming shows using the
sold_outfield fromget_upcoming_shows - Compare booth vs general admission pricing by iterating
price_tiersfromget_show_ticket_details - Build a room-specific schedule view for Fat Man or Little Boy using
get_shows_by_room - Surface venue entry policy and address in a chatbot or event app using
get_venue_info - Monitor new show announcements by diffing paginated results from
get_upcoming_showsover time - Answer common visitor questions programmatically by indexing
faq_segmentsfromget_faq
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Comedy Mothership have an official developer API?+
What does `get_show_ticket_details` return that `get_upcoming_shows` does not?+
get_upcoming_shows returns a summary — name, room, start time, sold-out flag, and URL. get_show_ticket_details goes further: it returns individual price tiers with price, fee, remaining_quantity, min_quantity, max_quantity, and sold_out per tier, plus the venue address and location. You need a show_id from the listing endpoints to call it.Are past or archived shows available through these endpoints?+
get_upcoming_shows, get_shows_by_room, and get_kill_tony_events — return only upcoming scheduled events. You can fork this API on Parse and revise it to add an endpoint targeting historical show data if the source exposes it.Does the API cover shows at other Austin comedy venues beyond Comedy Mothership?+
How does pagination work for `get_upcoming_shows`?+
page parameter to navigate pages of results. The total_on_page field in the response tells you how many shows were available on that page before the limit parameter was applied. If total_on_page equals your limit, there may be more results beyond it.