tickets.dev

StubHub Scraper API

Get live StubHub listings without building or maintaining your own StubHub scraper. Each request returns current prices, sections, rows, quantities, fees, and seat information through a structured API.

The API endpoint is https://api.tickets.dev/v1/capture/stubhub

StubHub scraper API for live inventory

Each request captures current listing-level inventory with sections, rows, quantities, prices, fees, and optional seat maps in the same normalized JSON used across every marketplace.

0% Progress
Loading example…
Filters
Sort by
Quantity
Price per ticket
JSON response
{
  "status": "Loading example…"}

Capture a StubHub event

Submit a public event page URL. The request runs the capture and returns one normalized snapshot when it completes.

MethodEndpoint
GET/v1/capture/stubhub
Code to integrate
import requests

endpoint = "https://api.tickets.dev/v1/capture/stubhub"
response = requests.get(
    endpoint,
    params={"eventUrl": event_url},
    headers={"x-api-key": api_key},
)
snapshot = response.json()

Query parameters

ParameterTypeDescription
eventUrlstring
required
A public StubHub event page URL to capture, from stubhub.com. Any country domain or subdomain of those works as well. The match is on the marketplace name, not the exact host. An event URL from a different marketplace returns 400 marketplace_mismatch.
includeVenueMapsboolean
optional
Render the venue maps for this capture and host them, filling sectionLevelUrl and seatLevelUrl. Off by default, because the maps add render and upload time to a request most callers make for pricing alone, so both fields come back as empty strings unless you pass true.
apiKeystring
optional
Your API key, when you send it in the query string rather than the x-api-key header. Either is accepted, and the key is required one way or the other. Keep it server-side. It carries your full quota. The public sandbox key tk_test_sandbox hits the same URL and returns fixture snapshots without spending a capture.

Example response

One capture of a real StubHub event, trimmed to two listings. Every marketplace returns this same shape, so a parser written once works against all of them.

{
  "source": "stubhub",
  "eventId": "161551904",
  "eventName": "The Eagles",
  "performers": [
    {
      "performerId": "5526",
      "name": "The Eagles",
      "master": true
    }
  ],
  "venueId": "150030906",
  "venueName": "Sphere at The Venetian Resort",
  "venueAddress": "255 Sands Ave",
  "venueCity": "Las Vegas",
  "venueState": "Nevada",
  "venueTimezone": "",
  "eventDateLocal": "2026-12-11T20:30:00-08:00",
  "eventDateUtc": "2026-12-12T04:30:00+00:00",
  "sourceUrl": "https://www.stubhub.com/the-eagles-las-vegas-tickets-12-11-2026/event/161551904",
  "capturedAt": "2026-08-02T00:03:13.390738+00:00",
  "currency": "USD",
  "note": "",
  "seatLevelUrl": "https://storage.tickets.dev/seatmaps/stubhub-viagogo/seat/161551904/1785628993.svg",
  "sectionLevelUrl": "https://storage.tickets.dev/seatmaps/stubhub-viagogo/section/161551904/1785628992.svg",
  "stats": {
    "listingCount": 458,
    "ticketCount": 1767,
    "getInPrice": 434.76,
    "medianPrice": 623.64,
    "avgPrice": 880.43,
    "maxPrice": 8054.75
  },
  "listings": [
    {
      "listingId": "13362523051",
      "inventoryType": "resale",
      "section": "408",
      "row": "Row",
      "quantity": 2,
      "ticketPrice": 434.76,
      "fee": 0,
      "totalPrice": 434.76,
      "ticketType": "Mobile Transfer ticket",
      "sellableQuantities": "2",
      "group": "400 Level",
      "seats": "",
      "listingNotes": "Clear view",
      "dealScore": "7.29"
    },
    {
      "listingId": "13541516708",
      "inventoryType": "resale",
      "section": "110",
      "row": "33",
      "quantity": 1,
      "ticketPrice": 434.94,
      "fee": 0,
      "totalPrice": 434.94,
      "ticketType": "Mobile Transfer ticket",
      "sellableQuantities": "1",
      "group": "100 Level",
      "seats": "",
      "listingNotes": "Limited or Obstructed View (printed on ticket)",
      "dealScore": "8.54"
    }
    // …456 more listings
  ]
}

Real-time StubHub pricing and availability

Store successive captures to monitor new and removed listings, price changes, fee changes, quantity movement, and inventory depth over time. The ticket price API guide covers all-in comparison, price alerts, resale analytics, and dynamic pricing workflows.

StubHub API questions

What does the StubHub API return?

One normalized snapshot of the event as it looks right now: every listing with its section, row, quantity, ticket price, fee and all-in total, plus event and venue details. Ask for venue maps and the same response carries hosted section and seat level map images tied to those listings.

Why use a StubHub scraper API?

Catalog and partner APIs often focus on events, performers, or seller workflows. tickets.dev captures the inventory visible on a public event page, including current listings, buyer-facing prices, fees, quantities, locations, and availability. It also removes the browser fleet, parsers, network routing, retries, and marketplace page maintenance involved in operating a production scraper.

Which StubHub URLs does it accept?

Any public event page URL from stubhub.com. Country domains and subdomains work as well. The match is on the marketplace, not the exact host.

Is the StubHub data live or cached?

Live. Each call opens the event page and reads its current listings and prices. There is no crawl schedule to wait on and no cached row to go stale.

Does StubHub use the same response shape as the other marketplaces?

Yes. Every tickets.dev marketplace API returns the identical snapshot schema, so a parser written against StubHub works unchanged against Ticketmaster, Vivid Seats, SeatGeek, TickPick, Gametime, Viagogo, GoTickets and Paciolan.

How is the StubHub API priced?

Per completed capture, starting at $0.050 each on the Starter plan. Failed requests are never charged, and every plan includes every marketplace and live seat maps.

Other marketplace APIs

The same endpoint shape and the same response schema cover every marketplace we support: Ticketmaster API, Vivid Seats API, SeatGeek API, TickPick API, Gametime API, Viagogo API, GoTickets API, and Paciolan API. Start with the ticket scraping API, explore live ticket inventory and real-time ticket pricing, see every ticket marketplace API, check per-capture pricing, or talk to us about volume.