/
Events / Stats

Events / Stats





Name

Events / Stats

Description

Display statistics about a specified Event.

Type

GET

URL

/v9/events/:event_id/stats

Credential Type

API|User

Supports Pagination

N/A



Long Description

Display statistics about a specified Event.



Parameters

Name

Description

Type

Presence

Location

Name

Description

Type

Presence

Location

event_id

The ID of the specific Event

Integer

Required

URI

inventory_type

Filter for a specific type of inventory to be included in the stats

String

  • event

  • parking

Optional

(defaults to all inventory)

URI

Examples

Request

Response

Request

Response

/v9/events/982604/stats

{ "id": 982604, "url": "/events/982604", "name": "Test Event Taxable (Test Purchases Only)", "occurs_at": "2023-02-28T19:00:00Z", "popularity_score": 0.1, "state": "shown", "ticket_groups_count": 209, "tickets_count": 20703, "wholesale_price_avg": 99.61, "wholesale_price_sum": 2062240.15, "wholesale_price_min": 10.11, "wholesale_price_max": 9000, "retail_price_avg": 140.73, "retail_price_sum": 2913609.90, "retail_price_min": 30.11, "retail_price_max": 11250 }



v9/events/982604/stats?inventory_type=event

(with filtering applied to display events only – excluding parking)

{ "id": 982604, "url": "/events/982604", "name": "Test Event Taxable (Test Purchases Only)", "occurs_at": "2026-02-28T19:00:00Z", "popularity_score": 0.1, "state": "shown", "ticket_groups_count": 513, "tickets_count": 15720, "wholesale_price_avg": 35.54, "wholesale_price_sum": 558731.93, "wholesale_price_min": 10.02, "wholesale_price_max": 1869.97, "retail_price_avg": 59.05, "retail_price_sum": 928209.36, "retail_price_min": 30.02, "retail_price_max": 2337.46 }

v9/events/982604/stats?inventory_type=foo

Errors

{ "errors": [ { "code": "invalid_params", "message": "inventory_type must be one of: event, parking" } ] }



Related content