The public Eventive API is a RESTful API. The exact same API is used by our single-page web applications; many of the things a customer or event organizer can do online can also be done programmatically via our public API.
The current stable API version is: v1. By passing an Accept-Version header with a value of ~1, you will ensure that future breaking changes do not affect your integration.
Access & authentication
The root URL for the Eventive API is https://api.eventive.org/.
Authentication to the API is performed via HTTP Basic Auth. Provide your API key as the basic auth username value. You do not need to provide a password.
If you are in a situation that does not allow modifying HTTP headers, you can also pass an api_key parameter set to your API key (for example, if generating a dynamic link to an Eventive-generated report).
All requests to the Eventive API must include the Content-Type: application/json header. (This can be accomplished via curl, for example, with the parameter -H "Content-Type: application/json".)
Available resources
- Event buckets 
- Pass buckets 
- Passes 
- Pass subscriptions 
- Films 
- Events 
- Ticket buckets 
- Tickets 
- Coupons 
- Venues 
- Tags 
- Items 
- Mailings 
- People 
- Notes 
- Orders 
- Reports 
- Financial reports 
- Search 
Looking for something specific? Reach out to us with more details about your desired integration and we'll be happy to provide example API calls and extended documentation as needed.

