Viagogo Scraper API
Capture live Viagogo ticket inventory without building or maintaining your own Viagogo scraper. Send a public event URL and receive current listings, pricing, fees, sections, rows, quantities, availability, and seat maps as structured JSON.
The API endpoint is https://api.tickets.dev/v1/capture/viagogo
Viagogo 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.
{
"status": "Loading example…"}Capture a Viagogo event
Submit a public event page URL. The request runs the capture and returns one normalized snapshot when it completes.
| Method | Endpoint |
|---|---|
| GET | /v1/capture/viagogo |
import requests
endpoint = "https://api.tickets.dev/v1/capture/viagogo"
response = requests.get(
endpoint,
params={"eventUrl": event_url},
headers={"x-api-key": api_key},
)
snapshot = response.json()Query parameters
| Parameter | Type | Description |
|---|---|---|
eventUrl | string required | A public Viagogo event page URL to capture, from viagogo.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. |
includeVenueMaps | boolean 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. |
apiKey | string 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 Viagogo event, trimmed to two listings. Every marketplace returns this same shape, so a parser written once works against all of them.
{
"source": "viagogo",
"eventId": "161551904",
"eventName": "The Eagles",
"performers": [
{
"performerId": "",
"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.viagogo.com/Concert-Tickets/Rock-and-Pop/The-Eagles-Tickets/E-161551904",
"capturedAt": "2026-08-02T00:13:12.848895+00:00",
"currency": "USD",
"note": "",
"seatLevelUrl": "https://storage.tickets.dev/seatmaps/stubhub-viagogo/seat/161551904/1785629592.svg",
"sectionLevelUrl": "https://storage.tickets.dev/seatmaps/stubhub-viagogo/section/161551904/1785629592.svg",
"stats": {
"listingCount": 510,
"ticketCount": 2000,
"getInPrice": 409.97,
"medianPrice": 588.78,
"avgPrice": 812.85,
"maxPrice": 7592.75
},
"listings": [
{
"listingId": "13362523051",
"inventoryType": "resale",
"section": "408",
"row": "Row",
"quantity": 2,
"ticketPrice": 409.97,
"fee": 0,
"totalPrice": 409.97,
"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": 410.14,
"fee": 0,
"totalPrice": 410.14,
"ticketType": "Mobile Transfer ticket",
"sellableQuantities": "1",
"group": "100 Level",
"seats": "",
"listingNotes": "Limited or Obstructed View (printed on ticket)",
"dealScore": "8.54"
}
// …508 more listings
]
}Real-time Viagogo 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.
Viagogo API questions
What does the Viagogo 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 Viagogo 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 Viagogo URLs does it accept?
Any public event page URL from viagogo.com. Country domains and subdomains work as well. The match is on the marketplace, not the exact host.
Is the Viagogo 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 Viagogo 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 Viagogo works unchanged against Ticketmaster, Vivid Seats, StubHub, SeatGeek, TickPick, Gametime, GoTickets and Paciolan.
How is the Viagogo 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, StubHub API, SeatGeek API, TickPick API, Gametime 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.