asp.net-web-apieventbrite

Eventbrite APi : Get ticket /price information for events


Im using Eventbrites api to get information about events. I cant find any price information on the event, even though I can see price information if I check the events page at eventbrite site.

I can see from here that there is an optional property "ticket_availability", but its seems to be non-existing, even though I can see price info on the event´s eventbrite page)

Further down in the documentation its also mention something called "Ticket class", that should be an anonymous object, but I cant find it anywhere,

(and yes, I have contacted their dev support)


Solution

  • [Accepted answer, cant set it until tomorrow] Answer from eventbrite:s dev support. If you see this: THANKS!(again) :D

    Ticket Classes are the object that we use to represent the prices of an event. I think this is the endpoint you're looking for: GET /v3/event/[EVENT ID]/ticket_classes/ https://www.eventbrite.com/developer/v3/endpoints/events/#ebapi-get-events-id-ticket-classes

    That will return a list of Ticket Class objects (since events can have more than one price). Here's the documentation on the Ticket Class object it self. The cost field is what you are likely interested in.