# Comedy Mothership — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Browse upcoming Comedy Mothership shows across different rooms, check real-time ticket availability, and get detailed information about Kill Tony events and seating options. Find venue details, FAQs, and track specific performances to plan your comedy night.

**Category:** Entertainment | **Website:** [comedymothership.com/](https://comedymothership.com/) | **Docs:** [parse.bot/marketplace/3ce1809e-b5ca-4a6b-8b45-6f09c4efd33f/comedymothership-com-api](https://parse.bot/marketplace/3ce1809e-b5ca-4a6b-8b45-6f09c4efd33f/comedymothership-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_faq

Get Frequently Asked Questions content from Comedy Mothership. Returns text segments containing questions and answers covering location, age restrictions, ticket purchasing, seating, dress code, parking, and more.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_faq \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_kill_tony_events

Get upcoming Kill Tony events with detailed ticket availability including booth/table seating pricing and remaining quantities. Filters the main show listing for Kill Tony events and fetches per-event ticket tier details from SquadUp.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_kill_tony_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_show_ticket_details

Get detailed ticket tiers and availability for a specific show by its event ID from SquadUp. Returns venue details, ticket URL, and price tier information including booth seating. The show_id is the numeric event ID from get_upcoming_shows, get_shows_by_room, or get_kill_tony_events.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `show_id` | string | Yes | Numeric event ID from the show listings (e.g. '139153'). Available in the id field of shows returned by get_upcoming_shows, get_shows_by_room, or get_kill_tony_events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_show_ticket_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"show_id":"<string>"}'
```

### get_shows_by_room

Get upcoming shows for a specific room at Comedy Mothership. Returns all scheduled shows for the given room. The venue has two rooms: Fat Man (larger headliner room) and Little Boy (smaller intimate room).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `room` | string | No | Room identifier. Accepted values: 'fat-man', 'little-boy'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_shows_by_room \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"room":"<string>"}'
```

### get_upcoming_shows

List upcoming comedy shows at Comedy Mothership. Returns show name, room, date/time, sold out status, and ticket URL. Each page returns all scheduled shows for that window.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of shows to return from the current page. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_upcoming_shows \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### get_venue_info

Get venue policy, address, and box office information for Comedy Mothership. Returns structured text segments from the box office info page covering hours, policies, showtimes, age restrictions, and ticket fraud prevention.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comedymothership-com-api-3ce1809e/get_venue_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
