Sales Data

Sales Summary

Description

The Sales Summary API provides aggregated sales data for a specific event. This endpoint is particularly useful for getting an overview of sales performance metrics, including daily sales breakdowns.

Request

GET /events/{provider}/{eventId}/sales-summary

Supported Providers

Currently, only stubhub is supported as a provider.

Parameters

ParameterTypeRequiredDescription
providerstringYesThe ticket provider (currently only stubhub)
eventIdstringYesUnique identifier for the event

Query String Parameters

ParameterTypeRequiredDescription
startDatestringNoStart date for the date range (format: YYYY-MM-DD)
endDatestringNoEnd date for the date range (format: YYYY-MM-DD)

Example Request

GET /events/stubhub/152386655/sales-summary?startDate=2023-12-13&endDate=2024-12-15

Response

{
    "marketplaceId": "152386655",
    "marketplace": "StubHub",
    "name": "Foo Fighters",
    "venue": "Petco Park",
    "eventDate": "2024-08-07T17:30:00Z",
    "date": "2024-08-07T17:30:00+00:00",
    "city": "San Diego",
    "state": "California",
    "country": "USA",
    "minimumSalesDataDate": "2023-10-04T00:00:00Z",
    "maximumSalesDataDate": "2024-08-02T00:00:00Z",
    "salesData": [
        {
            "date": "2023-12-14",
            "totalTickets": 27,
            "totalSales": 5917.66,
            "minSoldPrice": 73.91,
            "maxSoldPrice": 523.62,
            "avgSoldPrice": 219.17
        }
    ],
    "_request": {
        "requestedStartDate": "2023-12-13T00:00:00",
        "requestedEndDate": "2024-12-15T00:00:00",
        "requestTimestamp": "2025-03-27T20:50:10.8653956Z"
    }
}

Response Fields

Event Information

FieldTypeDescription
marketplaceIdstringUnique identifier for the event in the marketplace
marketplacestringName of the ticket marketplace
namestringEvent name
venuestringVenue name
eventDatestringISO 8601 timestamp of the event
datestringISO 8601 timestamp with timezone
citystringEvent city
statestringEvent state/province
countrystringEvent country
minimumSalesDataDatestringISO 8601 timestamp of the earliest available sales data
maximumSalesDataDatestringISO 8601 timestamp of the latest available sales data

Sales Data Object (Array)

FieldTypeDescription
datestringDate of sales (YYYY-MM-DD)
totalTicketsintegerNumber of tickets sold on this date
totalSalesnumberTotal revenue from sales on this date
minSoldPricenumberLowest ticket price sold on this date
maxSoldPricenumberHighest ticket price sold on this date
avgSoldPricenumberAverage ticket price on this date

Request Information

FieldTypeDescription
requestedStartDatestringThe start date requested in the query parameters
requestedEndDatestringThe end date requested in the query parameters
requestTimestampstringISO 8601 timestamp of when the request was processed

Error Responses

Status CodeDescription
400Invalid request parameters
404Event not found
401Unauthorized
403Forbidden
Previous
Event Search By Id