How to obtain a list of all Public Live Events listed on Sticky Tickets

This functionality allows you to retrieve details for all live and public events listed on Sticky Tickets through the use of an access token. To obtain a token for accessing these details, follow the steps outlined below. Once granted access, you'll have visibility into comprehensive event information, including the event's URL, name, start and end date/time, venue details, location instructions, organiser and organisation name, contact phone and email, event description, capacity, images, ticket names, and sub-ticket details.

The primary purpose of this feature is to empower event directories to seamlessly integrate all publicly listed Sticky Tickets events into their service.

To request the public access token for our Public Events API, kindly reach out to Sticky Tickets' support team by sending an email to support@stickytickets.com.au.

 

How to use

- Public Event details API URL is /public/events.

- There are two ways of passing the token, first is by adding it to the request as a header, and second is by passing it as a parameter on the request URL

- https://www.stickytickets.com.au/api/events/search then use the token in the request header

 

Sample JSON Response

[

{

        "name": "Blues Festival",

        "eventurl": "stickytickets.com.au/bluesfestival",

        "Tags": "Music, Dancing, Family"

        "startDate": "31/12/2021 10:30:00 AM",

        "endDate": "31/12/2021 3:30:00 PM",

        "location": "Opera House",

        "locationAddress": "Cicular Quay Sydney 200",

        "locationSpecialInstructions": null,

        "organiserName": "John Doe",

        "organisationName": "Sticky Tickets Australia Pty Ltd",

        "phone": "6128787660",

        "email": "support@bluesfestival.com.au",

        "description": "<p>This is a test only event for the Sticky Tickets Event Details API.</p>",

        "image1": null,

        "image2": null,

        "image3": null,

        "isPublic": true,

        "tickets": [

            {

              "ticketName": "General Admission",

                       }

        ]

        "name": "Blues Festival After Party",

        "eventurl": "stickytickets.com.au/bluesfestival_afterparty",

        "Tags": "Music, Dancing"

        "startDate": "31/12/2021 4:50:00 PM",

        "endDate": "31/12/2021 11:40:00 PM",

        "location": "Grand Concert Hall",

        "locationAddress": "1 Kent Street, Millers Point NSW 2000, Australia",

        "locationSpecialInstructions": null,

        "organiserName": "John Doe",

        "organisationName": "Sticky Tickets Australia Pty Ltd",

        "phone": "161287660660",

        "email": "support@bluesfestival.com.au",

        "description": "<p>This is a test only event for the Sticky Tickets Public Event API.</p>",

        "image1": null,

        "image2": null,

        "image3": null,

        "tickets": [

            {

               "ticketName": "Free Registration",

            },

            {

              "ticketName": "Early Bird Full Entry",

            },

            {

                     "ticketName": "Full Entry",

            }

        ]