Discover/StubHub API
live

StubHub APIstubhub.com

Access StubHub ticket listings, event details, performer schedules, and trending suggestions via 5 structured API endpoints. No scraping required.

Endpoint health
verified 6d ago
get_performer_events
browse_category_components
get_event_details
search_autocomplete
search_events
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the StubHub API?

The StubHub API exposes 5 endpoints covering ticket marketplace data including event search, live ticket listings with seat-level pricing, and performer schedules. The get_event_details endpoint returns individual ticket listings with fields like section, row, seat, price, availableTickets, and dealScore, plus a venue section map summarizing pricing ranges across the arena. IDs and slugs needed by most endpoints are discoverable from search_autocomplete and search_events responses.

Try it
Search keyword (e.g., 'Taylor Swift', 'Lakers')
api.parse.bot/scraper/781a7acb-7269-4afa-81c0-0ef1ef109043/<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/781a7acb-7269-4afa-81c0-0ef1ef109043/search_autocomplete?query=Taylor+Swift' \
  -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 stubhub-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.stubhub_ticket_api import StubHub, ComponentMethod, Performer

stubhub = StubHub()

# Browse trending events near the user's location
for event in stubhub.events.browse(method=ComponentMethod.DONT_MISS_EVENTS, limit=5):
    print(event.event_name, event.venue_name, event.local_event_date, event.min_price)

# Search for suggestions by keyword
for suggestion in stubhub.suggestions.search(query="Coldplay", limit=5):
    print(suggestion.title, suggestion.url, suggestion.tlc_id)

# Search for events and performers grouped by entity type
for group in stubhub.matchgroups.search(query="Lakers"):
    for match in group.results:
        print(match.title, match.subtitle, match.url)

# Get events for a specific performer via constructible resource
performer = Performer(_api=stubhub, performer_id="2864", performer_slug="denver-nuggets-tickets")
for event in performer.events(limit=3):
    print(event.event_name, event.venue_name, event.local_event_date)
    # Navigate to sub-resource: listings for this event
    for listing in event.listings.list(limit=5):
        print(listing.section, listing.row, listing.raw_price, listing.is_cheapest_listing)
All endpoints · 5 totalmissing one? ·

Get trending performer and event suggestions from StubHub. Returns popular categories with their names, IDs, relative URLs, and thumbnail images. Note: results reflect currently trending performers rather than query-filtered matches.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g., 'Taylor Swift', 'Lakers')
Response
{
  "type": "object",
  "fields": {
    "data": "array of suggestion objects, each containing id, tlcId, title, url, and categoryImageUrl"
  },
  "sample": {
    "data": {
      "data": [
        {
          "id": 177764,
          "url": "/matt-rife-tickets/category/130402730",
          "title": "Matt Rife",
          "tlcId": 1,
          "categoryImageUrl": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/q_auto:low,f_auto,c_thumb,g_auto,w_108,h_108/categories/177764/6582698"
        }
      ]
    },
    "status": "success"
  }
}

About the StubHub API

Search and Discovery

The search_autocomplete endpoint accepts a keyword query and returns trending performer and event suggestions, each with an id, tlcId, title, url, and categoryImageUrl. Note that results reflect currently trending performers on StubHub rather than strict query-filtered matches — a search for a lesser-known act may return trending alternatives instead. The search_events endpoint runs a full search and returns results grouped by entity type: performers (entity=5), events (entity=2), and venues (entity=3), each group carrying titles, URLs, and image URLs.

Event and Ticket Details

Once you have an event_id and event_slug — both parseable from URL paths in search results — get_event_details returns the complete active ticket inventory for that event. Each listing object includes section, row, seat, price, availableTickets, and dealScore. The venue_map field provides a sectionPopupData map keyed by section, giving per-section pricing and availability summaries useful for building seat-map visualizations. A pricing_summary object with min_price and max_price floats gives an at-a-glance range without iterating all listings.

Performer Schedules and Browse

get_performer_events takes a performer_id and performer_slug (both available from search_autocomplete URL paths) and returns upcoming events with fields including eventId, eventName, url, localEventDate, localEventTime, venueName, and minPrice. It also returns an altPerformersCarousel with related performer names, images, and IDs, and a maybeInterestedInCarousel for discovery. The browse_category_components endpoint, limited to the DontMissEvents method, returns a location-inferred carousel of upcoming events with the same core event fields.

Reliability & maintenanceVerified

The StubHub API is a managed, monitored endpoint for stubhub.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when stubhub.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 stubhub.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
6d ago
Latest check
5/5 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
  • Monitor StubHub price floors for a specific event using min_price and max_price from get_event_details.
  • Build a performer tour tracker by pulling upcoming event dates, venues, and ticket prices via get_performer_events.
  • Aggregate section-level ticket availability across an arena using venue_map.sectionPopupData from get_event_details.
  • Surface trending performers in a local events app using search_autocomplete thumbnail and category data.
  • Alert users to new ticket listings for sold-out events by polling listings_count and listings from get_event_details.
  • Discover related artists or teams programmatically via the altPerformersCarousel returned by get_performer_events.
  • Feed a local events widget with geo-inferred upcoming shows using browse_category_components with the DontMissEvents method.
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 StubHub have an official developer API?+
StubHub has historically offered partner-level API access, documented at developer.stubhub.com, but public access is limited and requires a formal application. This Parse API provides structured access to StubHub marketplace data without a separate partner agreement.
What does search_autocomplete actually return — does it filter by my query?+
The endpoint accepts a query string but returns results that reflect currently trending performers and events on StubHub rather than strict text-match results. If you search for a low-traffic act, the response may return popular trending acts instead. Use search_events when you need query-matched results grouped by performer, event, and venue entity types.
Does the API expose historical sales data or completed transaction prices?+
No. The API covers active ticket listings with current pricing, upcoming event schedules, and marketplace discovery data. Historical sale prices and transaction records are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting StubHub's historical pricing data if that surface becomes accessible.
Can I retrieve tickets for a specific section or filter listings by price within get_event_details?+
The get_event_details endpoint returns all active listings for the event without server-side filtering by section or price. Client-side filtering on the returned listings array by section or price fields is the current approach. The venue_map.sectionPopupData object provides per-section pricing summaries if you need aggregated section data without iterating every listing. You can fork the API on Parse and revise the endpoint to add pre-filtered queries if the source supports them.
Are venue details like address and seating capacity included in event responses?+
Event objects include venueName and event date/time fields, but structured venue records with addresses, coordinates, or capacity figures are not currently returned by any endpoint. The API covers ticket listings, performer schedules, and event metadata. You can fork it on Parse and revise to add a venue detail endpoint targeting that data.
Page content last updated . Spec covers 5 endpoints from stubhub.com.
Related APIs in MarketplaceSee all →
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.
viagogo.com API
Search for events and browse tickets across Viagogo's catalog, discovering performer schedules, ticket listings, and categories all in one place. Get detailed information about available tickets and events to find exactly what you're looking for.
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.
SeeTickets.com API
Search for events and get detailed information about tickets, venues, and event categories on See Tickets. Browse upcoming events by category, view venue details, and find what you're looking for with search suggestions.
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.
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.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
ticketswap.nl API
ticketswap.nl API