Sales Data

Sales Details

Description

The Sales Details API provides detailed transaction-level data for a specific event. This endpoint allows you to retrieve individual sale records within a specified date range.

Request

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

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/156376576/sales-details?startDate=2023-01-01&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",
    "salesDetails": [
        {
            "date": "2023-12-14",
            "soldTickets": [
                {
                    "sectionName": "207",
                    "row": "3",
                    "seats": "6 - 15",
                    "quantity": 2,
                    "price": 328.83,
                    "priceFormatted": "$328.83",
                    "soldDate": "2023-12-14T01:46:18.537Z"
                }
            ],
            "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:51.4717379Z"
    }
}

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 Details Object (Array)

FieldTypeDescription
datestringDate of sales (YYYY-MM-DD)
soldTicketsarrayArray of individual ticket sales for this date
totalTicketsintegerTotal number 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
minimumSalesDataDatestringISO 8601 timestamp of the earliest available sales data for this date
maximumSalesDataDatestringISO 8601 timestamp of the latest available sales data for this date

Sold Ticket Object

FieldTypeDescription
sectionNamestringVenue section identifier (e.g., "207", "Field A3", "Pit")
rowstringRow identifier (e.g., "3", "R12", "24")
seatsstringSeat numbers or range (e.g., "6 - 15", "7 - 8", "26 - 26")
quantityintegerNumber of tickets in this sale
pricenumberPrice per ticket
priceFormattedstringFormatted price with currency symbol (e.g., "$328.83")
soldDatestringISO 8601 timestamp of the sale

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
Sales Summary
Next
Event