Discover/Playbill API
live

Playbill APIplaybill.com

Access Broadway show listings, theater details, performance schedules, and ticket pricing data from Playbill via a simple JSON API.

Endpoint health
verified 3d ago
search_plays
get_grosses
get_play_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Playbill API?

The Playbill API covers currently running Broadway productions across 3 endpoints, returning show titles, theater names and addresses, performance schedules, and ticket pricing (average and top prices). The search_plays endpoint lets you filter shows by title keyword, while get_play_details returns full production details including description and schedule. A dedicated get_grosses endpoint surfaces ticket price data for all currently running Broadway shows in a single call.

Try it
Search keyword to filter by play title (case-insensitive substring match)
Show category. Only 'broadway' is currently supported.
api.parse.bot/scraper/07c5695d-8db6-4dbd-9a53-caaba516f8a6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/07c5695d-8db6-4dbd-9a53-caaba516f8a6/search_plays?query=Hamilton&category=broadway' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace playbill-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.playbill_api import Playbill, PlaySummary, Play, BoxOffice, TicketPricing

playbill = Playbill()

# Search for Broadway shows matching a query
for show in playbill.plays.search(query="Hamilton"):
    print(show.title, show.slug, show.average_ticket_price, show.top_ticket_price)

    # Get full details for this show
    detail = show.details()
    print(detail.title, detail.description, detail.schedule)
    print(detail.theater.name, detail.theater.address)
    print(detail.average_ticket_price, detail.top_ticket_price)

# Get a play directly by slug
play = playbill.plays.get(slug="hamilton-broadway-richard-rodgers-theatre-2015")
print(play.title, play.theater.name, play.theater.address, play.schedule)

# Get box office grosses for all shows
box_office = playbill.boxoffices.get()
for show_name, pricing in box_office.grosses.items():
    print(show_name, pricing.average_ticket_price, pricing.top_ticket_price)
All endpoints · 3 totalmissing one? ·

Search for currently running Broadway shows with an optional title filter. Returns a list of shows with titles, slugs, URLs, and current ticket pricing (average and top ticket prices). Single-page response containing all matching results.

Input
ParamTypeDescription
querystringSearch keyword to filter by play title (case-insensitive substring match)
categorystringShow category. Only 'broadway' is currently supported.
Response
{
  "type": "object",
  "fields": {
    "plays": "array of show objects with title, slug, url, average_ticket_price, and top_ticket_price",
    "total": "integer count of returned plays"
  },
  "sample": {
    "data": {
      "plays": [
        {
          "url": "https://playbill.com/production/hamilton-broadway-richard-rodgers-theatre-2015",
          "slug": "hamilton-broadway-richard-rodgers-theatre-2015",
          "title": "Hamilton",
          "top_ticket_price": "$349.00",
          "average_ticket_price": "$197.30"
        }
      ],
      "total": 1
    },
    "status": "success"
  }
}

About the Playbill API

What the API Covers

This API exposes data from Playbill for currently running Broadway productions. The search_plays endpoint accepts an optional query parameter (case-insensitive title substring match) and an optional category parameter (currently only broadway is supported). It returns an array of show objects — each with a title, slug, url, average_ticket_price, and top_ticket_price — plus a total count of results.

Production Details

Passing a production slug from search_plays results to get_play_details returns the full record for that show. The response includes the production url, a title string (which incorporates the theater name and year), a theater object with name and address fields, a schedule string describing current performance times, a description paragraph, and both top_ticket_price and average_ticket_price as dollar-amount strings (or null if unavailable).

Broadway Grosses

The get_grosses endpoint requires no inputs and returns a grosses object whose keys are lowercased show names. Each value is an object with average_ticket_price and top_ticket_price. This is useful for building a quick price comparison across all currently running Broadway shows without making individual detail calls.

Data Scope and Freshness

All three endpoints reflect currently running Broadway productions — past or closed shows are not included. The search_plays and get_grosses endpoints are the right starting points for inventory discovery, while get_play_details is suited for per-production lookups using the slugs returned from search.

Reliability & maintenanceVerified

The Playbill API is a managed, monitored endpoint for playbill.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when playbill.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official playbill.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display current Broadway show listings with average and top ticket prices on a theater deal-finder app.
  • Build a price comparison table across all running Broadway productions using the get_grosses endpoint.
  • Power a Broadway show search interface filtered by partial title match via the query parameter.
  • Populate production pages with theater name, address, and performance schedule from get_play_details.
  • Track ticket price trends for specific shows by polling get_grosses at regular intervals.
  • Generate itinerary recommendations by combining show schedules and theater addresses with mapping tools.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Playbill offer an official developer API?+
Playbill does not publish a public developer API or documentation for third-party access to its show and ticketing data.
What does `get_play_details` return that `search_plays` does not?+
search_plays returns a lightweight record — title, slug, URL, and ticket prices — suitable for listing views. get_play_details adds the full description, a theater object with both name and address, and the schedule string for current performance times. You need the production slug from a prior search_plays call to use this endpoint.
Does the API cover off-Broadway or touring productions?+
Not currently. The category parameter only supports broadway, so the API covers Broadway productions exclusively. You can fork this API on Parse and revise it to add an endpoint targeting off-Broadway or touring show data.
Are historical or closed shows available through any endpoint?+
Not currently. All three endpoints reflect currently running productions only; there is no endpoint for past or closed shows. You can fork this API on Parse and revise it to add a historical productions endpoint if that data becomes accessible.
How are show names keyed in the `get_grosses` response?+
The grosses object uses lowercased show names as keys, each mapping to an object with average_ticket_price and top_ticket_price. If you need to match grosses data back to a specific production, normalize your show titles to lowercase before comparing against these keys.
Page content last updated . Spec covers 3 endpoints from playbill.com.
Related APIs in EntertainmentSee all →
theatermania.com API
Search and discover Broadway shows, theater productions, and tours across different cities while staying updated with the latest theater news and show details. Find performances by location, browse upcoming tours, and get comprehensive information about specific shows all in one place.
landmarktheatres.com API
Find current movies, check showtimes, and browse Landmark Theatres locations nationwide with direct ticketing links. Search what's playing at any US Landmark Theatre and get all the information you need to plan your movie outing.
vividseats.com API
Search for events, venues, and performers, then browse current ticket listings with detailed seat information and pricing to find the perfect show. Analyze historical sales data to track ticket price trends and make informed purchasing decisions.
stubhub.com API
Search and discover tickets across StubHub's marketplace by looking up events, performers, and categories to find exactly what you want to attend. Browse event details, performer schedules, and curated category collections to compare available tickets and make informed purchasing decisions.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
shop.ticketera.com API
Search for events on Ticketera, retrieve detailed event information including pricing and ticket categories, and check real-time seat availability for any performance. Ideal for browsing upcoming shows, comparing ticket options, and finding open seats before purchasing.
concertarchives.org API
Search for performers and their concert history to discover performance details, repertoire, and event information from Concert Archives. Find specific concerts, view performer profiles, and explore what artists have performed and when.