Skip to main content
GET
/
sales
/
{eventID}
Get Event Ticket Sales
curl --request GET \
  --url https://api.bttr.studio/sales/v1/events/sales/{eventID}
[
  {
    "sold_quantity": 123,
    "sold_at": "2023-11-07T05:31:56Z",
    "ticket": {
      "section": "<string>",
      "row": "<string>",
      "seat": "<string>",
      "class": "<string>",
      "price": 123,
      "raw_price": 123,
      "max_quantity": 123,
      "available_tickets": 123,
      "class_name": "<string>"
    }
  }
]

Path Parameters

eventID
string
required

ID of the event to fetch ticket sales for

Response

List of sold tickets with details

sold_quantity
integer
sold_at
string<date-time>
ticket
object